@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
23 lines (22 loc) • 698 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Asset Collection as used for creates and updates with the API",
"allOf": [
{ "$ref": "/core.json#/definitions/update_base" },
{ "$ref": "/asset_collection/types.json#/definitions/assets" },
{
"type": "object",
"properties": {
"name": {},
"description": {},
"tags": {},
"meta": {},
"asset_collection_type": {},
"assets": {},
"loop": {}
},
"additionalProperties": false,
"required":["asset_collection_type"]
}
]
}