This appendix defines a portable schema for expressing Constitutional Execution Infrastructure (CEI) governance policies. Policies are externalized from application code, allowing governance rules to evolve independently while remaining versioned, reviewable, and replayable.
Governance policies should be treated as managed artifacts rather than embedded implementation details.
| Section | Purpose |
|---|---|
| Metadata | Policy identity, version, author, lifecycle state. |
| Authority | Delegated roles and permissions. |
| Evidence | Required supporting information. |
| Risk | Risk thresholds and escalation criteria. |
| Admissibility | Execution eligibility conditions. |
| Execution | Operational constraints and outcomes. |
policy:
id: payment-approval
version: 1.2.0
authority:
required: finance_manager
evidence:
minimum:
- invoice
- purchase_order
risk:
max_score: 30
decision:
success: GO
failure: DENY
{
"policy": {
"id": "payment-approval",
"version": "1.2.0"
},
"authority": {
"required": "finance_manager"
},
"risk": {
"max_score": 30
}
}
| Requirement | Description |
|---|---|
| Unique Identifier | Every policy has a stable ID. |
| Semantic Version | Major.Minor.Patch versioning. |
| Replay Compatibility | Historical versions remain available for replay. |
| Change Log | Document policy revisions. |
A conforming implementation should load governance policies from portable schemas, preserve version history, and associate each runtime decision with the policy version used during evaluation.
The Governance Policy Schema enables organizations to exchange, version, review, and execute governance policies consistently across different CEI implementations.
Next: Appendix I — Enterprise Reference Architecture.
This document forms part of the CEI publication record. Supporting evidence is organized through the engineering-evidence archive, specifications, architecture documentation and replay verification materials.