Kong · Schema

CloudGatewaysStringFieldFilterOverride

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

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.
neq string The field does not match the provided value.
oeq string The field matches any of the provided values.
ocontains string The field contains any of the provided values.
View JSON Schema on GitHub

JSON Schema

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