forked from AMWA-TV/is-04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_mux.json
40 lines (40 loc) · 942 Bytes
/
flow_mux.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a mux Flow",
"title": "Mux Flow resource",
"allOf": [
{ "$ref": "flow_core.json" },
{
"type": "object",
"required": [
"format",
"media_type"
],
"properties": {
"format": {
"description": "Format of the data coming from the Flow as a URN",
"type": "string",
"enum": [
"urn:x-nmos:format:mux"
],
"format": "uri"
},
"media_type": {
"description": "Subclassification of the format using IANA assigned media types",
"type": "string",
"anyOf": [
{
"enum": [
"video/SMPTE2022-6"
]
},
{
"pattern": "^[^\\s\\/]+\\/[^\\s\\/]+$"
}
]
}
}
}
]
}