Kong · Schema

API Operation Implementation Status

The implementation status of the operation.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
matched boolean Whether the operation is matched by a Kong route in the control plane
route object
service object
View JSON Schema on GitHub

JSON Schema

kong-apioperationimplementationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiOperationImplementationStatus",
  "title": "API Operation Implementation Status",
  "description": "The implementation status of the operation.",
  "type": "object",
  "properties": {
    "matched": {
      "description": "Whether the operation is matched by a Kong route in the control plane",
      "type": "boolean",
      "readOnly": true
    },
    "route": {
      "type": "object",
      "additionalProperties": false,
      "nullable": true,
      "properties": {
        "id": {
          "description": "The route identifier",
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "description": "The name of the route",
          "type": "string"
        }
      },
      "readOnly": true,
      "required": [
        "id",
        "name"
      ]
    },
    "service": {
      "type": "object",
      "additionalProperties": false,
      "nullable": true,
      "properties": {
        "id": {
          "description": "The service identifier",
          "type": "string",
          "format": "uuid"
        },
        "name": {
          "description": "The name of the service",
          "type": "string"
        }
      },
      "readOnly": true,
      "required": [
        "id",
        "name"
      ]
    }
  },
  "additionalProperties": false,
  "required": [
    "matched",
    "route",
    "service"
  ]
}