Kong · Schema

EventGatewayACLPolicyConfig

Apply ACLs to virtual cluster traffic.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
rules array Every ACL rule in this list applies independently.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayaclpolicyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayACLPolicyConfig",
  "title": "EventGatewayACLPolicyConfig",
  "description": "Apply ACLs to virtual cluster traffic.",
  "type": "object",
  "properties": {
    "rules": {
      "description": "Every ACL rule in this list applies independently.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventGatewayACLRule"
      },
      "minItems": 1
    }
  },
  "required": [
    "rules"
  ]
}