Schema flow_video_coded.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"media_type": {
"anyOf": [
{
"enum": [
"video/H264",
"video/vc2"
]
},
{
"pattern": "^video\\/[^\\s\\/]+$"
}
],
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"not": {
"enum": [
"video/raw"
]
},
"type": "string"
}
},
"required": [
"media_type"
],
"type": "object"
}
],
"description": "Describes a coded Video Flow",
"title": "Coded Video Flow resource",
"type": "object"
}