Schema io-response-schema.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "IO Information view for entire API",
"properties": {
"inputs": {
"patternProperties": {
"^[a-zA-Z0-9\\-_]+$": {
"additionalProperties": false,
"properties": {
"caps": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Describes an input's capabilities",
"properties": {
"block_size": {
"minimum": 1,
"type": "integer"
},
"reordering": {
"type": "boolean"
}
},
"required": [
"reordering",
"block_size"
],
"title": "Input capabilities resource",
"type": "object"
},
"channels": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "List of channels in an input",
"items": {
"properties": {
"label": {
"type": "string"
}
},
"required": [
"label"
],
"type": "object"