From 52e1316717b9e878c5da1606c256b6307a12bbb5 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 21 May 2018 10:19:54 +0200 Subject: [PATCH] chg: Timecode object to describe a start of video sequence (e.g. CCTV evidence) and the end of the video sequence. --- objects/timecode/definition.json | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 objects/timecode/definition.json diff --git a/objects/timecode/definition.json b/objects/timecode/definition.json new file mode 100644 index 0000000..8a2c6ff --- /dev/null +++ b/objects/timecode/definition.json @@ -0,0 +1,52 @@ +{ + "requiredOneOf": [ + "description", + "start-marker-timecode", + "end-marker-timecode", + "start-timecode", + "end-timecode", + "recording-date" + ], + "attributes": { + "description": { + "description": "Description of the video sequence", + "ui-priority": 1, + "misp-attribute": "text" + }, + "start-marker-timecode": { + "description": "Start marker timecode in the format hh:mm:ss;ff", + "ui-priority": 0, + "misp-attribute": "text", + "multiple": true + }, + "end-marker-timecode": { + "description": "End marker timecode in the format hh:mm:ss;ff", + "ui-priority": 0, + "misp-attribute": "text", + "multiple": true + }, + "start-timecode": { + "description": "Start marker timecode in the format hh:mm:ss.mms", + "ui-priority": 0, + "misp-attribute": "text", + "multiple": true + }, + "end-timecode": { + "description": "End marker timecode in the format hh:mm:ss.mms", + "ui-priority": 0, + "misp-attribute": "text", + "multiple": true + }, + "recording-date": { + "description": "Date of recording of the video sequence", + "ui-priority": 0, + "misp-attribute": "datetime", + "multiple": true + } + }, + "version": 1, + "description": "Timecode object to describe a start of video sequence (e.g. CCTV evidence) and the end of the video sequence.", + "meta-category": "misc", + "uuid": "60141eac-71d2-4173-930d-91dba8106c40", + "name": "timecode" +}