Schema receiver_audio.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"caps": {
"description": "Capabilities",
"properties": {
"media_types": {
"description": "Subclassifications of the format accepted, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"items": {
"anyOf": [
{
"enum": [
"audio/L24",
"audio/L20",
"audio/L16",
"audio/L8"
]
},
{
"pattern": "^audio\\/[^\\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:audio"
],
"format": "uri",
"type": "string"
}
},