Schema flow_audio_coded.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"media_type": {
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"not": {
"pattern": "^audio\\/L[0-9]+$"
},
"pattern": "^audio\\/[^\\s\\/]+$",
"type": "string"
}
},
"required": [
"media_type"
],
"type": "object"
}
],
"description": "Describes a coded audio Flow",
"title": "Coded Audio Flow resource",
"type": "object"
}