Kong · Schema

EventGatewayListenerPolicyCreate

The typed schema of the listener policy to modify it.

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

JSON Schema

kong-eventgatewaylistenerpolicycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayListenerPolicyCreate",
  "title": "EventGatewayListenerPolicyCreate",
  "description": "The typed schema of the listener policy to modify it.",
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "tls_server": "#/components/schemas/EventGatewayTLSListenerPolicy",
      "forward_to_virtual_cluster": "#/components/schemas/ForwardToVirtualClusterPolicy"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/EventGatewayTLSListenerPolicy"
    },
    {
      "$ref": "#/components/schemas/ForwardToVirtualClusterPolicy"
    }
  ]
}