quorum_cancel
Write · Conductor only
Cancels one open coordination quorum. A Quorum is what was agreed in Mind Quorum layering (Debate holds why, Quorum holds what was agreed). Call it when the agreement is abandoned rather than resolved.
Arguments, result and boundaries
- Arguments
- Required: `quorum_id`. - `quorum_id`.
- Result
- JSON object with quorum_id and status (always cancelled on success).
- Boundaries
- Requires the conductor role. Unlike resolve, no additional participation gate is applied beyond the conductor check. Stored within the selected profile boundary only.
- Lifecycle
- Marks an open quorum cancelled with a resolution stamp and records an audit/history event. Cancelled is terminal; lanes beneath keep their own standing.
- Errors
- Missing conductor role is denied with requires-conductor vocabulary. Missing or malformed identity reads as unknown_quorum with no oracle. Non-open quorums are rejected as quorum not open. Unknown arguments are rejected.
- Example
- ```json { "quorum_id": "<uuid>" } ``` Result shape: ```json { "quorum_id": "<uuid>", "status": "cancelled" } ```