Schema input-parent-response-schema.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"description": "Gives details of where media connected to an Input came from",
"title": "Input Parent Resource",
"required":[
"id",
"type"
],
"properties": {
"id":{
"type": [
"string",
"null"
],
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type":{
"type": [
"string",
"null"
],
"enum":[
"source",
"receiver",
null
]
}
}
}