Kong · Schema

ControlPlaneGroupAddOnOwner

Control Plane Group 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_group_id string ID of the control-plane group that owns this add-on.
control_plane_group_geo object
View JSON Schema on GitHub

JSON Schema

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