{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProxyURL", "title": "ProxyURL", "description": "Proxy URL associated with reaching the data-planes connected to a control-plane.", "type": "object", "properties": { "host": { "description": "Hostname of the proxy URL.", "type": "string" }, "port": { "description": "Port of the proxy URL.", "type": "integer" }, "protocol": { "description": "Protocol of the proxy URL.", "type": "string" } }, "example": { "host": "example.com", "port": 443, "protocol": "https" }, "additionalProperties": false, "required": [ "host", "port", "protocol" ] }