Kong · Schema

VirtualClusterNamespaceIdSelectorGlob

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
glob string Expose any id that matches this glob pattern (e.g., `my_id_*`).
View JSON Schema on GitHub

JSON Schema

kong-virtualclusternamespaceidselectorglob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterNamespaceIdSelectorGlob",
  "title": "VirtualClusterNamespaceIdSelectorGlob",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "glob"
    },
    "glob": {
      "description": "Expose any id that matches this glob pattern (e.g., `my_id_*`).",
      "type": "string",
      "format": "glob",
      "minLength": 1,
      "pattern": "^[A-Za-z0-9._?*-]+$"
    }
  },
  "required": [
    "type",
    "glob"
  ]
}