Kong · Schema

AllEntitiesSelector

Entity selector that includes all entities of the given type within the catalog.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
selector string
selector_parameters string
View JSON Schema on GitHub

JSON Schema

kong-allentitiesselector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AllEntitiesSelector",
  "title": "AllEntitiesSelector",
  "description": "Entity selector that includes all entities of the given type within the catalog.",
  "type": "object",
  "properties": {
    "selector": {
      "type": "string",
      "enum": [
        "all"
      ]
    },
    "selector_parameters": {
      "type": "string",
      "enum": [
        null
      ],
      "nullable": true
    }
  },
  "required": [
    "selector",
    "selector_parameters"
  ]
}