Locked & verifiable.
An evaluation claim anchored to a SHA-256 hash at the recorded time. Anyone can re-derive it from the canonical bytes below.
74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517linkage_version: prml-linkage/0 manifest_hash: 464df2bee6b479b742306cca356ce8e4904be22cad09beb5cfee29025c1b1d31 receipt: https://registry.falsify.dev/464df2bee6b479b742306cca356ce8e4904be22cad09beb5cfee29025c1b1d31 result: digest: 70e2fd7f287dde840e5a5dadefe56fe9a67da8056ed10366dd47c2cfec8273ff exit_code: 0 finished_at: '2026-09-23T11:51:37.326466Z' observed: 0.74 run: dataset_hash: b21f3d81db8071257d5ff1deaeba1fd4303b62712e6fcc9715c7a86202cb5871 environment: 'illustrative: darwin/python3.9/sklearn1.6.1/cpu' id: acc-demo-01-C2 model_version: sklearn-logistic-regression-l2-C1.0 started_at: '2026-09-23T11:51:21.144721Z' start_hash: 2319707056303917528b9d4d20659cdd9e80d1db3e1be20c38bfc2d9946b592draw bytes →
[](https://registry.falsify.dev/74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517)- uses: studio-11-co/prml-verify-action@v2
with:
mode: verdict
expected-hash: 74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517github.com/studio-11-co/prml-verify-action →Verify this hash yourself
Paste your manifest YAML. The canonical hash must match 74415372626b…. This runs the registry's own canonicalization module (canonical.js) in your browser; for verification that does not trust this registry at all, use any of the four reference implementations offline.
Verify the independent timestamp (RFC 3161, offline)
The token countersigns this manifest hash with the timestamp authority's key, so the time claim no longer rests on this registry. Verify with OpenSSL 3 (LibreSSL, the macOS default, cannot check the ESS extension):
curl -sO https://registry.falsify.dev/74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517.tsr
curl -s https://timestamp.sigstore.dev/api/v1/timestamp/certchain -o chain.pem
awk 'split_after==1{n++;split_after=0} /END CERTIFICATE/{split_after=1} {print > ("tsa-" n ".pem")}' n=0 chain.pem
openssl ts -verify -digest 74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517 \
-in 74415372626b6e608dc2a7ea3b187e18b08b56fcb61cda1b2908f2c3f30b7517.tsr -CAfile tsa-1.pem -untrusted tsa-0.pem
Expected output: Verification: OK.
What this receipt proves — and what it does not
- Proves: these manifest bytes hashed to this SHA-256, and the registry attests (Ed25519 signature over hash + timestamp, key at /pubkey) that it saw the hash at the recorded time.
- Timestamp: where an RFC 3161 token is present (the "Independent timestamp" row above), the time claim is countersigned by a public timestamp authority and verifiable offline; backdating it would require compromising that authority, not just this registry. Records without a token rest on the registry's clock alone until anchored. Where a "Transparency log" row is present, the hash is additionally mirrored to the public Sigstore Rekor log with a verifiable inclusion proof.
- Does not prove: ordering, or the claimed result. A PRML receipt establishes that these criteria existed no later than the recorded time; it does not establish that the evaluation ran afterwards — that is what a
prml-linkage/0record is for — and it never establishes that the result is good. - The signature covers hash + timestamp only, not the submitted handle. There is no key-rotation story yet; the current key id is served at /pubkey.
- Limitations: the registry itself is a signed key-value store, not an append-only log — per-record non-equivocation comes from the Rekor entry, and records committed before full-manifest storage (2026-07-11) carry their RFC 3161 token only. No long-term storage guarantee: mirror your hashes in your own infrastructure.
PRML v0.2 is a frozen RFC (comment window closed 2026-05-22) — spec.falsify.dev/v0.2-rfc. Editor: spec.falsify.dev/editor.