Schema source_audio.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes an audio Source",
"title": "Audio Source resource",
"allOf": [
{ "$ref": "source_core.json" },
{
"type": "object",
"required": [
"format",
"channels"
],
"properties": {
"format": {
"description": "Format of the data coming from the Source as a URN",
"type": "string",
"enum": [
"urn:x-nmos:format:audio"
],
"format": "uri"
},
"channels" : {
"description" : "Array of objects describing the audio channels",
"type" : "array",
"minItems": 1,
"items" : {
"title" : "Component",
"type" : "object",
"required" : [
"label"
],
"properties" :
{
"label" : {
"description" : "Label for this channel (free text)",
"type" : "string"
},
"symbol" : {
"description" : "Symbol for this channel (from VSF TR-03 Appendix A)",
"type" : "string",
"oneOf": [
{