forked from AMWA-TV/is-04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_audio.json
44 lines (44 loc) · 1.06 KB
/
flow_audio.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes an audio Flow",
"title": "Audio Flow resource",
"allOf": [
{ "$ref": "flow_core.json" },
{
"type": "object",
"required": [
"format",
"sample_rate"
],
"properties": {
"format": {
"description": "Format of the data coming from the Flow as a URN",
"type": "string",
"enum": [
"urn:x-nmos:format:audio"
],
"format": "uri"
},
"sample_rate" : {
"description": "Number of audio samples per second for this Flow",
"type": "object",
"required" : [
"numerator"
],
"properties" : {
"numerator" : {
"description" : "Numerator",
"type" : "integer"
},
"denominator" : {
"description" : "Denominator",
"type" : "integer",
"default" : 1
}
}
}
}
}
]
}