@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
30 lines (29 loc) • 955 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Production Package in full",
"allOf": [
{ "$ref": "/core.json#/definitions/full_base" },
{
"type": "object",
"properties": {
"id": {},
"object_class": {
"type": "string",
"enum": [
"PRODUCTION_PACKAGE"
]
},
"name": {},
"description": {},
"version": {},
"tags": {},
"meta": {},
"uri": { "$ref": "/production_package/types.json#/definitions/uri" },
"annotations": { "$ref": "/production_package/types.json#/definitions/annotations" },
"schema_version": {}
},
"required": ["uri", "annotations"],
"additionalProperties": false
}
]
}