Schema source_generic.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a generic Source",
"title": "Generic Source resource",
"allOf": [
{ "$ref": "source_core.json" },
{
"type": "object",
"required": [
"format"
],
"properties": {
"format": {
"description": "Format of the data coming from the Source as a URN",
"type": "string",
"enum": [
"urn:x-nmos:format:video",
"urn:x-nmos:format:mux"
],
"format": "uri"
}
}
}
]
}