← Back to Patent Claims
Patent Claim 049 All Patents →

Substrate-Independent Verdict Manifest with Cross-Cloud Reproducibility Proof

Inner-hash / outer-envelope separation that lets a verdict produced on one cloud substrate be replayed and byte-verified on another

Patent Claim JIL Sovereign July 2026 Claim 49 of 157

Executive Summary

JIL Sovereign's verdict engine is designed to run across more than one cloud compute substrate - a managed-container service inside a data-cloud tenant, a lakehouse workspace with its own governance catalog, and a hardware-rooted confidential-computing enclave bound to a sovereign jurisdiction. A verdict produced on any of these must be independently verifiable as the product of the canonical verdict logic, regardless of which substrate produced it, while each substrate's own compliance attestation - its deployment manifest, its VPC isolation proof, its hardware attestation - must also remain checkable on its own terms.

The manifest design that makes both possible splits into two layers. An inner hash is computed only from substrate-independent components - the input record's content hash, the verdict-check catalog version, the reference-data manifest hash, the verdict-logic version, and the aggregation-rule version - so it is byte-identical regardless of which substrate produced it. An outer envelope wraps that inner hash with the substrate identifier, the substrate's own compliance attestation evidence, and the substrate's signing-key signature, without modifying the inner hash itself.

Core Innovation: Separating a verdict's reproducibility hash (substrate-independent, byte-identical everywhere) from its compliance attestation (substrate-specific, carried in an outer envelope) so that cross-substrate replay verification and per-substrate compliance verification can each be checked independently.

Problem Statement

A naive design embeds substrate-specific identifiers - account locators, workspace IDs, enclave IDs - directly into the verdict body's hash. That destroys cross-substrate reproducibility: the identical verdict computed on two different substrates hashes differently purely because of where it ran, not because the underlying logic disagreed. The opposite naive design strips substrate identifiers out of the verdict entirely, which destroys compliance attestation instead - the verdict body no longer carries any proof of which substrate's compliance perimeter it was computed under, or that perimeter's specific guarantees.

5
Manifest components hashed into the substrate-independent inner hash
332
Named checks in the verdict-check catalog referenced by the manifest
2
Independent verification protocols - replay and compliance attestation

Why Existing Approaches Fall Short

  • Reproducible-build systems (Bazel, Nix): guarantee byte-identical binaries across build machines - build-time reproducibility, not the output of a compute job run against live data on heterogeneous substrates with different SQL dialects, concurrency semantics, and storage formats.
  • Content-addressable storage (IPFS, Git): content hashes identify storage objects, but say nothing about cross-substrate compute attestation.
  • Verifiable computation primitives (zkSNARKs, STARKs): cryptographically prove computation correctness, but are substantially heavier-weight than manifest-based replay verification and are not deployed in payment-integrity workloads at this scale.
  • Naive substrate-tagged hashing: either pollutes the reproducibility hash with substrate identifiers or discards compliance attestation entirely - the two-layer split is the alternative to both failure modes.

Technical Architecture

The Five-Component Manifest

ComponentContent
Input record schema + content hashThe canonical, versioned schema of the input record plus a SHA-256 of its canonicalized contents
Verdict-check catalog versionSemantic version plus content hash of the named check catalog (332 checks at time of filing) in force when the verdict was produced
Reference-data manifest hashHash-of-hashes over every reference-data snapshot consulted during verdict generation
Verdict-logic versionEngine semantic version plus git commit hash, with build provenance attested
Aggregation-rule versionVersion identifier of the rule used to combine per-check results into a verdict aggregate

Inner Hash Computation

The five components are canonicalized into a deterministic byte sequence - fixed lexicographic component order, deterministic JSON serialization with sorted keys and no whitespace, fixed separator bytes - and the SHA-256 of that sequence is the inner hash. Because none of the five components reference a substrate-specific identifier, the inner hash is identical across substrates for the same underlying computation.

The Outer Envelope

The outer envelope wraps the inner hash without modifying it, and carries the substrate identifier, the substrate-specific compliance attestation evidence appropriate to that substrate, and the substrate's own signing-key signature over the envelope contents. A verifier extracts and checks the inner hash independently of the substrate-specific attestation.

Substrate-Specific Outer Envelopes

SubstrateOuter-Envelope Attestation Evidence
Managed-container service inside a data-cloud tenantDeployment-manifest hash, customer-account locator, customer-VPC isolation attestation
Lakehouse workspace with a governance metadata catalogFederated-sharing-grant manifest hash, source/recipient workspace service-principal identifiers, compute-permission attribute value
Hardware-rooted confidential-computing enclave bound to a sovereign jurisdictionHardware attestation signature, proof-of-residency manifest hash, cross-jurisdiction-egress denial hash

Two Independent Verification Protocols

Cross-substrate replay verification replays a verdict on a second substrate using the manifest as input and compares the resulting inner hash, byte-for-byte, against the original. Compliance attestation verification instead reads the outer envelope and checks the substrate-specific evidence against that substrate's own signing key. The two protocols are independent: replay confirms the verdict logic itself is consistent across substrates; attestation confirms a given deployment honored its own compliance perimeter. Either may be checked, and may succeed, without the other.

Prior Art Differentiation

ApproachCross-Substrate Byte-Identical Hash?Preserves Substrate Attestation?Compute-Output Reproducibility?
Reproducible-build systems (Bazel, Nix)N/A - build artifacts, not compute outputN/ABuild-time only
Content-addressable storage (IPFS, Git)Identifies objects, not computationsNoNo
zkSNARK / STARK verifiable computationCryptographic proof, heavyweightNot inherentlyYes, but not deployed at this scale here
JIL Sovereign substrate-independent manifestYes - inner hash excludes substrate identifiersYes - outer envelope per substrateYes - deterministic canonicalized manifest

Patent Claim

Independent Claim 49: A computer-implemented method for cross-substrate verdict reproducibility, comprising: generating, on a first cloud compute substrate selected from a plurality of heterogeneous cloud compute substrates, a verdict manifest comprising an input-record content hash, a verdict-check catalog version, a reference-data manifest hash, a verdict-logic version, and an aggregation-rule version; computing an inner hash as a deterministic, substrate-independent cryptographic hash of a canonicalized concatenation of the verdict manifest's components, the canonicalization excluding any substrate-specific identifier; wrapping the inner hash in a substrate-specific outer envelope comprising a substrate identifier, substrate-specific compliance attestation evidence, and a substrate signing-key signature over the outer envelope; and supporting independent cross-substrate replay verification by replaying the verdict on a second, different cloud compute substrate using the verdict manifest as input and comparing the resulting inner hash, byte-for-byte, against the original inner hash, such that verdict-logic reproducibility is verifiable independently of substrate-specific compliance attestation.