@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
26 lines (25 loc) • 689 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Shots",
"description": "Types for shots.",
"definitions": {
"location": {
"type": "string",
"description": "Free-text of shooting location of shot."
},
"shot_number": {
"type": "number",
"description": "Shot number"
},
"complete": {
"type": "boolean",
"description": "Has all the content for the shot been captured?"
},
"rush_ids": {
"type": "array",
"items": {
"$ref": "/uuids.json#/definitions/rush_uuid"
}
}
}
}