This appendix defines a portable ledger model for recording governed execution. The ledger provides an immutable history of consequential decisions and the metadata required for replay, verification, and audit.
The ledger records what happened. Replay explains how it happened.
| Field | Description | Required |
|---|---|---|
| event_id | Globally unique event identifier. | Yes |
| timestamp | Execution timestamp. | Yes |
| request_id | Request correlation identifier. | Yes |
| decision | GO, DENY, PAUSE, ESCALATE or OVERRIDE. | Yes |
| authority_id | Authority reference. | Yes |
| policy_version | Policy applied during evaluation. | Yes |
| evidence_refs | Evidence identifiers. | Yes |
| previous_hash | Integrity link to prior record or equivalent mechanism. | Recommended |
| record_hash | Integrity value for this record. | Recommended |
{
"event_id": "EV-2026-000001",
"request_id": "REQ-91A7",
"decision": "GO",
"authority_id": "AUTH-002",
"policy_version": "1.2.0",
"evidence_refs": ["EVD-101","EVD-102"],
"timestamp": "2026-07-18T10:30:00Z",
"previous_hash": "...",
"record_hash": "..."
}
| Element | Purpose |
|---|---|
| Replay ID | Groups events into replay sessions. |
| Sequence Number | Maintains event ordering. |
| Projection Version | Identifies generated read models. |
| Runtime Version | Identifies implementation revision. |
The Constitutional Ledger Specification defines a stable persistence model for governed execution. It provides the foundation for audit, replay, interoperability, and long-term operational accountability.
Next: Appendix F — Replay & Verification Specification.
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.