Schema flow_audio_raw.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"bit_depth": {
"description": "Bit depth of the audio samples",
"type": "integer"
},
"media_type": {
"anyOf": [
{
"enum": [
"audio/L24",
"audio/L20",
"audio/L16",
"audio/L8"
]
},
{
"pattern": "^audio\\/[^\\s\\/]+$"
}
],
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"type": "string"
}
},
"required": [
"media_type",
"bit_depth"
],
"type": "object"
}
],
"description": "Describes a raw audio Flow",
"title": "Raw Audio Flow resource",
"type": "object"
}