Schema flow_json_data.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"event_type": {
"description": "Event type generated by this Flow, if applicable",
"type": "string"
},
"format": {
"description": "Format of the data coming from the Flow as a URN",
"enum": [
"urn:x-nmos:format:data"
],
"format": "uri",
"type": "string"
},
"media_type": {
"description": "Subclassification of the format, using IANA assigned media types where available, or other values defined in the NMOS Parameter Registers",
"enum": [
"application/json"
],
"type": "string"
}
},
"required": [
"format",
"media_type"
],
"type": "object"
}
],
"description": "Describes a JSON based Flow",
"title": "JSON based Flow resource",
"type": "object"
}