{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/amplience/dc-sample-blog-nextjs/master/schemas/video.json", "title": "Video", "description": "Video schema", "allOf": [ { "$ref": "http://bigcontent.io/cms/schema/v1/core#/definitions/content" } ], "type": "object", "properties": { "video": { "title": "Video", "type": "object", "anyOf": [ { "$ref": "http://bigcontent.io/cms/schema/v1/core#/definitions/video-link" } ] } }, "propertyOrder": ["video"], "required": ["video"] }