> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.adid.dev/llms.txt.
> For full documentation content, see https://docs.adid.dev/llms-full.txt.

# Trust Framework Mapping

**Used in:** §5.5 Trust Framework
**Audience:** Verifier
**IA ID:** D22

```mermaid
graph LR
  classDef cfg fill:#dbeafe,stroke:#1d4ed8
  classDef src fill:#dcfce7,stroke:#15803d
  classDef out fill:#fef9c3,stroke:#b45309

  TI["Trusted Issuers list (verifier-scoped)"]:::cfg
  SI["Schema-to-Issuer mapping"]:::cfg
  CV["Compliance VCs (held by issuers)"]:::src

  Cred["Inbound VC / VP"]:::src
  Eng["Verification Engine"]:::out

  Cred --> Eng
  TI --> Eng
  SI --> Eng
  CV --> Eng
  Eng --> Verdict["{ verified, trusted, issuerDid, schemaId, complianceMet }"]:::out
```

**Reading guide:** The engine intersects three configuration sources to decide "trusted". A VC can be cryptographically valid yet not trusted (issuer not on the list) — the verdict separates these signals.

***