{ "$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" ] }