Kong · Schema

ControlPlaneAddOnOwner

Control Plane is the owner for the add-on.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind string Type of owner for the add-on.
control_plane_id string ID of the control-plane that owns this add-on.
control_plane_geo object
View JSON Schema on GitHub

JSON Schema

kong-controlplaneaddonowner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ControlPlaneAddOnOwner",
  "title": "ControlPlaneAddOnOwner",
  "description": "Control Plane is the owner for the add-on.",
  "type": "object",
  "properties": {
    "kind": {
      "description": "Type of owner for the add-on.",
      "type": "string",
      "const": "control-plane"
    },
    "control_plane_id": {
      "description": "ID of the control-plane that owns this add-on.",
      "type": "string",
      "format": "uuid",
      "example": "123e4567-e89b-12d3-a456-426614174000"
    },
    "control_plane_geo": {
      "$ref": "#/components/schemas/ControlPlaneGeo"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "control_plane_id",
    "control_plane_geo"
  ]
}