file stringclasses 7
values | category stringclasses 2
values | expected_result stringclasses 2
values | source_dataset stringclasses 5
values | kind stringclasses 7
values | note stringclasses 7
values | n_receipts int64 1 5 |
|---|---|---|---|---|---|---|
valid/a11oy-khipu-chain.json | valid | PASS | SZLHOLDINGS/a11oy-verifiable-corpus (receipts/) | signed DSSE khipu chain | 5-receipt signed hash chain, seq 0->4; each prev == previous.digest; DSSE PAE content hash recomputed. | 5 |
valid/a11oy-khipu-genesis.json | valid | PASS | SZLHOLDINGS/a11oy-verifiable-corpus (receipts/) | signed DSSE khipu genesis receipt | Single genesis receipt (seq 0, prev = 64 zeros), from the 2026-06-27 shard; DSSE PAE content hash verified. | 1 |
valid/lake-inference-receipt.json | valid | PASS | SZLHOLDINGS/a11oy-verifiable-corpus (lake/) | inference decision receipt | decision=allow with measured-or-null energy (joules=null, label=UNAVAILABLE) in the clear. | 1 |
valid/readiness-audit-receipt.json | valid | PASS | SZLHOLDINGS/readiness-runs | unsigned readiness envelope | unsigned DSSE-style envelope; content bound by payloadSha256 over raw payload bytes. | 1 |
valid/daily-activity-receipt.json | valid | PASS | SZLHOLDINGS/szl-evidence | HMAC-stub daily activity receipt | daily activity envelope, hmac-stub signing; structural + schema checks only. | 1 |
invalid/tampered-payload.json | invalid | FAIL | derived from a11oy-khipu-chain.json (LABELED TAMPER, not real) | content-hash tamper | One payload byte flipped -> sha256(DSSE PAE) != _pae_sha256. Demonstrates the verifier catching content tampering. | 5 |
invalid/broken-chain.json | invalid | FAIL | derived from a11oy-khipu-chain.json (LABELED TAMPER, not real) | chain-link tamper | prev rewritten (PAE recomputed so hash still passes) -> chain link breaks. Demonstrates the verifier catching a broken hash chain. | 5 |
Governed Receipts Bench · a conformance corpus for the governed-receipt spec
A small benchmark corpus of governance decision receipts for the open
governed-receipt-spec.
Every receipt here has a known expected outcome under the spec's dependency-free
offline verifier: the valid/ receipts must PASS, the invalid/ receipts
must FAIL. Use it to test a verifier implementation, to see what a real SZL
receipt looks like, or to check your own receipts against the same rules.
Built and maintained by SZL Holdings. Apache-2.0.
Honesty first. The
valid/receipts are real records drawn factually from SZL's public receipt datasets — nothing is fabricated. Theinvalid/receipts are clearly-labeled tampered derivatives of a real receipt, included only so the verifier's failure paths are testable. No metric here is invented; where a value was not measured (e.g. energy joules) it is honestlynull/UNAVAILABLE.
What a governed receipt is
A governed inference receipt is the small, replayable, hash-chained record a governed AI runtime emits for one governed action (e.g. an inference): what it decided, the Λ governance-floor status, whether energy was actually measured, and a signed DSSE envelope that lets anyone re-check it offline.
A receipt is explicitly NOT a zero-knowledge proof and NOT a proof of computation — it is a signed, tamper-evident audit record of a governance decision and its bound content hashes. That is the "receipt tier" of trust (cheaper than TEE or zkML; deployable today). See the spec for the full framing.
Layout
bench.jsonl # one row per case: file, category, expected_result, source, note
valid/ # real receipts — MUST verify PASS
a11oy-khipu-chain.json # 5-receipt signed hash chain (seq 0->4)
a11oy-khipu-genesis.json # single signed genesis receipt (seq 0, prev = 64 zeros)
lake-inference-receipt.json # decision=allow + measured-or-null energy in the clear
readiness-audit-receipt.json# unsigned envelope, content bound by payloadSha256
daily-activity-receipt.json # HMAC-stub daily activity receipt
invalid/ # LABELED tampered derivatives — MUST verify FAIL
tampered-payload.json # a payload byte flipped -> DSSE PAE content-hash mismatch
broken-chain.json # prev rewritten -> hash-chain link breaks
bench.jsonl is the machine-readable manifest (the dataset viewer renders it):
each row carries file, category (valid/invalid), expected_result
(PASS/FAIL), the source_dataset it was drawn from, n_receipts, and a note.
Provenance of the valid/ receipts (real data)
| File | Source dataset | Shows |
|---|---|---|
valid/a11oy-khipu-chain.json |
SZLHOLDINGS/a11oy-verifiable-corpus (receipts/) |
a 5-receipt signed DSSE hash chain (seq 0→4) |
valid/a11oy-khipu-genesis.json |
SZLHOLDINGS/a11oy-verifiable-corpus (receipts/) |
a single signed genesis receipt (seq 0, prev = 64 zeros) |
valid/lake-inference-receipt.json |
SZLHOLDINGS/a11oy-verifiable-corpus (lake/) |
decision + measured-or-null energy in the clear |
valid/readiness-audit-receipt.json |
SZLHOLDINGS/readiness-runs |
unsigned envelope with payloadSha256 |
valid/daily-activity-receipt.json |
SZLHOLDINGS/szl-evidence |
HMAC-stub daily activity receipt |
The two invalid/ files are byte-level tampers of a11oy-khipu-chain.json,
included purely to exercise the verifier's failure detection — they are not
real records.
How to verify (one command, zero dependencies)
The verifier is Python 3 standard library only — no third-party packages, no network.
# 1. get this bench corpus
git clone https://huggingface.co/datasets/SZLHOLDINGS/governed-receipts-bench
# 2. get the spec + verifier
git clone https://github.com/szl-holdings/governed-receipt-spec
cd governed-receipt-spec
# 3. the real receipts PASS ...
python verify.py ../governed-receipts-bench/valid/*.json # -> OVERALL: PASS
# 4. ... and the tampered ones FAIL
python verify.py ../governed-receipts-bench/invalid/tampered-payload.json # -> OVERALL: FAIL (PAE sha256 mismatch)
python verify.py ../governed-receipts-bench/invalid/broken-chain.json # -> OVERALL: FAIL (chain link break)
Or paste any receipt into the live verifier Space:
SZLHOLDINGS/governed-receipt-verifier.
For each receipt the verifier: (1) validates the decoded decision object against
the JSON Schema, (2) recomputes the content hash (sha256(DSSE PAE) == _pae_sha256
for signed receipts, or sha256(payload) == payloadSha256 for readiness
receipts), (3) checks the prev-hash chain (prev == previous.digest, contiguous
seq, genesis is 64 zeros), and (4) structurally checks the DSSE envelope.
The estate
- Spec + verifier:
szl-holdings/governed-receipt-spec - Live verifier Space:
SZLHOLDINGS/governed-receipt-verifier - Source receipt datasets:
a11oy-verifiable-corpus,readiness-runs,uds-governance-receipts - Console: a-11-oy.com · a11oy console
szlholdings-a11oy.hf.space - Hugging Face org: SZLHOLDINGS · GitHub org: szl-holdings
License
Apache-2.0.
Cite this
Cite this. Part of the SZL Holdings Ouroboros Thesis (Governed Post-Determinism).
Concept DOI (always-latest): 10.5281/zenodo.19944926.
Author: Stephen P. Lutar Jr. · ORCID 0009-0001-0110-4173 · License CC-BY-4.0.
Full DOI-pinned lineage (v1→v26) + the 8 papers: szl-papers PAPERS_INDEX.
No artifact-specific DOI is minted for this dataset; the concept DOI above covers the program.
Honesty (Doctrine v11): Λ unconditional uniqueness is Conjecture 1 (machine-checked FALSE as stated) — never a theorem; conditional uniqueness is Theorem U (axiom-free). Locked-proven formulas = exactly 8 {F1,F4,F7,F11,F12,F18,F19,F22}; ~185 experimental theorems are a separate CI-green tier; Khipu BFT safety = Conjecture 2. Trust never 100%.
@misc{lutar_szl_ouroboros,
author = {Lutar, Stephen P., Jr.},
title = {SZL Holdings --- The Ouroboros Thesis (Governed Post-Determinism)},
year = {2026},
publisher = {Zenodo},
doi = {10.5281/zenodo.19944926},
url = {https://doi.org/10.5281/zenodo.19944926},
note = {Concept DOI --- always resolves to the latest version. ORCID 0009-0001-0110-4173. CC-BY-4.0.}
}
- Downloads last month
- -