UNPKG

@bbc/object-based-media-schema

Version:

JSON schemas which describe a common language for object-based media

31 lines (30 loc) 1 kB
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Narrative Element in full", "allOf": [ { "$ref": "/core.json#/definitions/full_base" }, { "type": "object", "properties": { "id": {}, "object_class": { "type": "string", "description": "Object Class (Fixed Value)", "enum": [ "NARRATIVE_ELEMENT" ] }, "name": {}, "description": {}, "version": {}, "tags": {}, "meta": {}, "body": { "$ref": "/narrative_element/types.json#/definitions/body" }, "links": { "$ref": "/narrative_element/types.json#/definitions/links" }, "schema_version": {} }, "required": ["body", "links"], "additionalProperties": false } ] }