Kong · Schema

ProxyURL

Proxy URL associated with reaching the data-planes connected to a control-plane.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
host string Hostname of the proxy URL.
port integer Port of the proxy URL.
protocol string Protocol of the proxy URL.
View JSON Schema on GitHub

JSON Schema

kong-proxyurl-schema.json Raw ↑
{
  "$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"
  ]
}