Skip to content

Evidence & Trust Bundles

Export verifiable proof of AI decision-making.

Trust Bundles

A trust bundle contains:

  • Decision record
  • Context snapshot
  • Audit chain excerpt
  • Cryptographic signatures
  • Timestamps

Creating Bundles

typescript
const bundle = await sovr.evidence.bundle('decision_abc123');

Verification

typescript
const result = await sovr.evidence.verify(bundle);
// { valid: true, signatureValid: true, chainValid: true }

Use Cases

Provide verifiable evidence in legal proceedings.

Insurance Claims

Prove AI acted within guidelines during incidents.

Compliance Audits

Demonstrate control effectiveness to auditors.

Customer Assurance

Share proof that customer data was handled correctly.

Bundle Contents

json
{
  "version": "1.0",
  "bundleId": "bundle_abc123",
  "decision": {
    "id": "dec_xyz",
    "action": "process_refund",
    "decision": "allow"
  },
  "auditChain": [...],
  "signatures": {
    "sovr": {
      "algorithm": "ed25519",
      "signature": "..."
    }
  }
}

The AI Responsibility Layer