Schema sender_transport_params.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"anyOf": [
{ },
{
"items": {
"not": {}
},
"type": "array"
},
{
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Describes WebSocket Sender transport parameters. The constraints in this schema are minimum constraints, but may be further constrained at the constraints endpoint. WebSocket Senders must support all parameters in this schema.",
"patternProperties": {
"^ext_[a-zA-Z0-9_]+$": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Describes external Sender transport parameters defined in other AMWA specifications. The constraints in this schema are minimum constraints, but may be further constrained at the constraints endpoint.",
"title": "External Sender Transport Parameters",
"type": [
"string",
"boolean",
"null",
"number"
]
}
},
"properties": {
"connection_authorization": {
"description": "Indication of whether authorization is required to make a connection. If the parameter is set to auto the Sender should establish for itself whether authorization should be used, based on its own internal configuration.",
"enum": [
"auto",
true,
false
],
"type": [
"string",
"boolean"
]
},
"connection_uri": {
"anyOf": [