Kong · Schema

API Implementation Service

A Gateway service that implements an API

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
control_plane_id string
id string
auth_strategy_sync_error object
View JSON Schema on GitHub

JSON Schema

kong-apiimplementationservice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiImplementationService",
  "title": "API Implementation Service",
  "description": "A Gateway service that implements an API",
  "type": "object",
  "properties": {
    "control_plane_id": {
      "type": "string",
      "format": "uuid",
      "example": "9f5061ce-78f6-4452-9108-ad7c02821fd5"
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "example": "7710d5c4-d902-410b-992f-18b814155b53"
    },
    "auth_strategy_sync_error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuthStrategyApiSyncError"
        }
      ],
      "readOnly": true,
      "x-speakeasy-ignore": true
    }
  },
  "additionalProperties": false,
  "required": [
    "control_plane_id",
    "id"
  ]
}