diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 10:45:37 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-10 10:45:37 -0400 |
commit | 7173a28dae301a7733bcc9b8111016c737c0f5f4 (patch) | |
tree | da5765d1d53a0f2f44cf6d1fb8f6db0bb0eadff5 /src/fields/documentSchemas.ts | |
parent | 01ebdb0db657f4c9de7959d2810548993a26e675 (diff) | |
parent | 03ae3477dac354eff9178dac701ee40e394434c9 (diff) |
Merge branch 'master' into ink_edits
Diffstat (limited to 'src/fields/documentSchemas.ts')
-rw-r--r-- | src/fields/documentSchemas.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fields/documentSchemas.ts b/src/fields/documentSchemas.ts index 8cf8f47b7..ada13226e 100644 --- a/src/fields/documentSchemas.ts +++ b/src/fields/documentSchemas.ts @@ -19,6 +19,10 @@ export const documentSchema = createSchema({ currentTimecode: "number", // current play back time of a temporal document (video / audio) displayTimecode: "number", // the time that a document should be displayed (e.g., time an annotation should be displayed on a video) inOverlay: "boolean", // whether the document is rendered in an OverlayView which handles selection/dragging differently + isLabel: "boolean", // whether the document is a label or not (video / audio) + audioStart: "number", // the time frame where the audio should begin playing + audioEnd: "number", // the time frame where the audio should stop playing + markers: listSpec(Doc), // list of markers for audio / video x: "number", // x coordinate when in a freeform view y: "number", // y coordinate when in a freeform view z: "number", // z "coordinate" - non-zero specifies the overlay layer of a freeformview |