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