@bbc/object-based-media-schema
Version:
JSON schemas which describe a common language for object-based media
20 lines (19 loc) • 640 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Narrative Element as used for creates and updates with the API",
"allOf": [
{ "$ref": "/core.json#/definitions/update_base" },
{
"type": "object",
"properties": {
"name": {},
"description": {},
"tags": {},
"meta": {},
"story_id": { "$ref": "/uuids.json#/definitions/story_uuid" },
"body": { "$ref": "/narrative_element/types.json#/definitions/body" }
},
"additionalProperties": false
}
]
}