@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
21 lines (20 loc) • 727 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Production Package as used for creates and updates with the API",
"allOf": [
{ "$ref": "/core.json#/definitions/update_base" },
{
"type": "object",
"properties": {
"name": {},
"description": {},
"tags": {},
"meta": {},
"uri": { "$ref": "/production_package/types.json#/definitions/uri" },
"annotations": { "$ref": "/production_package/types.json#/definitions/annotations" }
},
"required": ["uri", "annotations"],
"additionalProperties": false
}
]
}