Schema flow_audio.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"format": {
"description": "Format of the data coming from the Flow as a URN",
"enum": [
"urn:x-nmos:format:audio"
],
"format": "uri",
"type": "string"
},
"sample_rate": {
"description": "Number of audio samples per second for this Flow",
"properties": {
"denominator": {
"default": 1,
"description": "Denominator",
"type": "integer"
},
"numerator": {
"description": "Numerator",
"type": "integer"
}
},
"required": [
"numerator"
],
"type": "object"
}
},
"required": [
"format",
"sample_rate"
],
"type": "object"
}
],
"description": "Describes an audio Flow",
"title": "Audio Flow resource",
"type": "object"