Kong · Schema

NetworkStateFieldFilter

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

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
eq object The field exactly matches the provided value.
neq object The field does not match the provided value.
oeq string The field matches any of the provided values.
View JSON Schema on GitHub

JSON Schema

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