Kong · Schema

VirtualClusterNamespaceIdSelectorExactList

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
exact_list array
View JSON Schema on GitHub

JSON Schema

kong-virtualclusternamespaceidselectorexactlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterNamespaceIdSelectorExactList",
  "title": "VirtualClusterNamespaceIdSelectorExactList",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "exact_list"
    },
    "exact_list": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "value"
        ],
        "properties": {
          "value": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "minItems": 1
    }
  },
  "required": [
    "type"
  ]
}