Kong · Schema

ProxyURLs

Array of proxy URLs associated with reaching the data-planes connected to a control-plane.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-proxyurls-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProxyURLs",
  "title": "ProxyURLs",
  "description": "Array of proxy URLs associated with reaching the data-planes connected to a control-plane.",
  "type": "array",
  "items": {
    "$ref": "#/components/schemas/ProxyURL"
  },
  "format": "set",
  "example": [
    {
      "host": "example.com",
      "port": 443,
      "protocol": "https"
    }
  ]
}