@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
32 lines (31 loc) • 996 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Representation collection in full",
"allOf": [
{ "$ref": "/core.json#/definitions/full_base" },
{
"type": "object",
"properties": {
"id": {},
"object_class": {
"type": "string",
"description": "Object Class (Fixed Value)",
"enum": [
"REPRESENTATION_COLLECTION"
]
},
"name": {},
"description": {},
"version": {},
"tags": {},
"meta": {},
"representations": {
"$ref": "/representation_collection/types.json#/definitions/representations"
},
"schema_version": {}
},
"required": ["representations"],
"additionalProperties": false
}
]
}