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