Schema flow_data.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:data"
],
"format": "uri",
"type": "string"
},
"media_type": {
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"not": {
"enum": [
"video/smpte291",
"application/json"
]
},
"pattern": "^[^\\s\\/]+\\/[^\\s\\/]+$",
"type": "string"
}
},
"required": [
"format",
"media_type"
],
"type": "object"
}
],
"description": "Describes a generic data Flow",
"title": "Generic data Flow resource",
"type": "object"
}