Schema receiver_video.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"caps": {
"description": "Capabilities",
"properties": {
"media_types": {
"description": "Subclassification of the formats accepted using IANA assigned media types",
"items": {
"anyOf": [
{
"enum": [
"video/raw",
"video/H264",
"video/vc2"
]
},
{
"pattern": "^video\\/[^\\s\\/]+$"
}
],
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"format": {
"description": "Type of Flow accepted by the Receiver as a URN",
"enum": [
"urn:x-nmos:format:video"
],
"format": "uri",
"type": "string"
}
},
"required": [
"format",