Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 1.35 KB

File metadata and controls

27 lines (15 loc) · 1.35 KB

SimpleQuorum

The flattened shape used when the request has a single sub-request with a single tier, which is the common case. The threshold and approval count sit directly on the quorum object instead of inside rulesets.

Properties

Name Type Description Notes
type TypeEnum Discriminator identifying the flattened single-tier shape.
threshold Integer Number of approvals this request requires.
currentApprovalCount Integer Approvals collected so far toward `threshold`.
status QuorumApprovalState
isMandatoryOwnerApproved Boolean Present only when this request additionally requires the workspace owner's approval. `false` means the owner has not approved yet, which is why `status` can remain `PENDING` even once `currentApprovalCount` reaches `threshold`. Absent when no owner approval is required. [optional]
members List<Integer> Indexes into the top-level `users` array identifying the users who may approve. Returned only for `quorumStatusMode=FULL`; omitted otherwise. [optional]

Enum: TypeEnum

Name Value
SIMPLE "SIMPLE"