Kong · Schema

CatalogResourceConfigFieldFilter

Filters on the resource's `config` field. Filters must use dot-notation to identify the property that will be used to filter the results. For example: - `filter[config.control_plane_id]` - `filter[config.gateway_service_id][neq]=cedbd134-fc5c-4d44-9e38-ccd2a0c6e0ae`

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
eq string
contains string
ocontains string
oeq string
neq string
View JSON Schema on GitHub

JSON Schema

kong-catalogresourceconfigfieldfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogResourceConfigFieldFilter",
  "title": "CatalogResourceConfigFieldFilter",
  "description": "Filters on the resource's `config` field. Filters must use dot-notation to identify\nthe property that will be used to filter the results. For example:\n\n\n  - `filter[config.control_plane_id]`\n  - `filter[config.gateway_service_id][neq]=cedbd134-fc5c-4d44-9e38-ccd2a0c6e0ae`\n",
  "type": "object",
  "properties": {
    "eq": {
      "type": "string"
    },
    "contains": {
      "type": "string"
    },
    "ocontains": {
      "type": "string"
    },
    "oeq": {
      "type": "string"
    },
    "neq": {
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "contains",
    "ocontains",
    "oeq",
    "neq"
  ]
}