{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupConflict", "title": "GroupConflict", "description": "The Group Conflict object contains information about a conflict in a control plane group.", "type": "object", "properties": { "cluster_id": { "description": "The ID of a control plane member of a control plane group.", "type": "string", "format": "uuid", "example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "readOnly": true }, "description": { "description": "The description of the conflict.", "type": "string", "example": "conflicting entity found: ID=38d790ad-8b08-4ff5-a074-2e1e9e64d8bd, Name=foo", "readOnly": true }, "resource": { "$ref": "#/components/schemas/GroupConflictResource" } }, "required": [ "cluster_id", "description", "resource" ] }