Kong · Schema

API Implementation Control Plane

A Control plane that implements an API

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
access_control_enforcement_enabled boolean Indicates if the access control enforcement plugin is installed globally in the target control plane
control_plane_id string
View JSON Schema on GitHub

JSON Schema

kong-apiimplementationcontrolplane-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiImplementationControlPlane",
  "title": "API Implementation Control Plane",
  "description": "A Control plane that implements an API",
  "type": "object",
  "properties": {
    "access_control_enforcement_enabled": {
      "description": "Indicates if the access control enforcement plugin is installed globally in the target control plane",
      "type": "boolean",
      "readOnly": true
    },
    "control_plane_id": {
      "type": "string",
      "format": "uuid",
      "example": "7710d5c4-d902-410b-992f-18b814155b53",
      "x-speakeasy-name-override": "id"
    }
  },
  "additionalProperties": false,
  "required": [
    "control_plane_id"
  ]
}