Kong · Schema

Filter by mcp_method

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-metricsmcpmethodfilterbyfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricsMcpMethodFilterByField",
  "title": "Filter by mcp_method",
  "oneOf": [
    {
      "title": "Multiselect filters",
      "type": "object",
      "properties": {
        "operator": {
          "$ref": "#/components/schemas/RequestsFilterType"
        },
        "value": {
          "description": "The values to include in the results.\n",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "field": {
          "description": "The field to filter.",
          "type": "string",
          "enum": [
            "mcp_method"
          ]
        }
      },
      "required": [
        "operator",
        "value",
        "field"
      ]
    },
    {
      "title": "Empty filters",
      "type": "object",
      "properties": {
        "operator": {
          "$ref": "#/components/schemas/RequestsFilterTypeEmpty"
        },
        "field": {
          "description": "The field to filter.",
          "type": "string",
          "enum": [
            "mcp_method"
          ]
        }
      },
      "required": [
        "operator",
        "field"
      ]
    }
  ]
}