Kong · Schema

LegacyStringFieldFilter

Filter using **one** of the following operators: `eq`, `contains`

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
eq string The field exactly matches the provided value.
contains string The field contains the provided value.
View JSON Schema on GitHub

JSON Schema

kong-legacystringfieldfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LegacyStringFieldFilter",
  "title": "LegacyStringFieldFilter",
  "description": "Filter using **one** of the following operators: `eq`, `contains`",
  "type": "object",
  "properties": {
    "eq": {
      "description": "The field exactly matches the provided value.",
      "type": "string"
    },
    "contains": {
      "description": "The field contains the provided value.",
      "type": "string"
    }
  },
  "additionalProperties": false
}