Schema io-response-schema.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "IO Information view for entire API",
"type": "object",
"additionalProperties": false,
"required": [
"inputs",
"outputs"
],
"properties": {
"inputs":{
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9\\-_]+$":{
"type": "object",
"additionalProperties": false,
"properties": {
"parent":{
"$ref": "input-parent-response-schema.json"
},
"channels":{
"$ref": "input-channels-response-schema.json"
},
"caps":{
"$ref": "input-caps-response-schema.json"
},
"properties":{
"$ref": "input-properties-schema.json"
}
}
}
}
},
"outputs":{
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9\\-_]+$":{
"type": "object",
"additionalProperties": false,
"properties": {
"source_id":{
"$ref": "output-sourceID-response-schema.json"
},