Schema source_data.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Describes a data Source",
"title": "Data 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:data"
],
"format": "uri"
},
"event_type" : {
"description" : "Event type generated by this Source, if applicable",
"type" : "string"
}
}
}
]
}