Schema constraints-schema.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Used to express the dynamic constraints on transport parameters. These constraints may be set and changed at run time. Parameters must also conform with constraints inferred from the specification. Every transport parameter must have an entry, even if it is only an empty object.",
"title": "Constraints",
"anyOf": [{
"type": "array",
"items": {
"$ref": "constraints-schema-rtp.json"
}
},
{
"type": "array",
"items": {
"$ref": "constraints-schema-websocket.json"
}
},
{
"type": "array",
"items": {
"$ref": "constraints-schema-mqtt.json"
}
}
]
}