Kong · Schema

Add-On Config Kind Field Or Equality Filter

Filter add-on config kind by determining if the value is equal to any in a set of values.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
oeq string Comma-delimited list of add-on kinds.
View JSON Schema on GitHub

JSON Schema

kong-addonconfigkindfieldorequalityfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddOnConfigKindFieldOrEqualityFilter",
  "title": "Add-On Config Kind Field Or Equality Filter",
  "description": "Filter add-on config kind by determining if the value is equal to any in a set of values.",
  "type": "object",
  "properties": {
    "oeq": {
      "description": "Comma-delimited list of add-on kinds.",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "oeq"
  ]
}