Schema flow_video_raw.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a raw Video Flow",
"title": "Raw Video Flow resource",
"allOf": [
{ "$ref": "flow_video.json" },
{
"type": "object",
"required": [
"media_type",
"components"
],
"properties": {
"media_type": {
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"type": "string",
"enum": [
"video/raw"
]
},
"components" : {
"description" : "Array of objects describing the components",
"type" : "array",
"minItems": 1,
"items" : {
"title" : "component",
"type" : "object",
"required": [
"name",
"width",
"height",
"bit_depth"
],
"properties" :
{
"name" : {
"description" : "Name of this component",
"type" : "string",
"enum" : [
"Y",
"Cb",