Kong · Schema

ControlPlaneFilterParameters

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object Filter using **one** of the following operators: `eq`, `oeq`
name object Filter using **one** of the following operators: `eq`, `neq`, `contains`
cluster_type object Filter using **one** of the following operators: `eq`, `oeq`, `neq`
cloud_gateway object
View JSON Schema on GitHub

JSON Schema

kong-controlplanefilterparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ControlPlaneFilterParameters",
  "title": "ControlPlaneFilterParameters",
  "type": "object",
  "properties": {
    "id": {
      "description": "Filter using **one** of the following operators: `eq`, `oeq`",
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "eq": {
          "description": "The field exactly matches the provided value.",
          "type": "string"
        },
        "oeq": {
          "description": "The field matches any of the provided values.",
          "type": "string"
        }
      }
    },
    "name": {
      "description": "Filter using **one** of the following operators: `eq`, `neq`, `contains`",
      "type": "object",
      "additionalProperties": false,
      "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"
        }
      }
    },
    "cluster_type": {
      "description": "Filter using **one** of the following operators: `eq`, `oeq`, `neq`",
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "eq": {
          "description": "The field exactly matches 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"
        }
      }
    },
    "cloud_gateway": {
      "$ref": "#/components/schemas/BooleanFieldFilter"
    }
  },
  "additionalProperties": false
}