v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
Trust Registry

List trust frameworks

List governed platform catalog and tenant custom trust frameworks. You use a framework slug when you register a trusted issuer. The response is a bare JSON array of framework objects.

get/v1/trust-frameworks

Response

A bare JSON array of trust framework objects.

customboolean

You receive true when the framework is tenant-owned.

descriptionstring

You receive the framework summary shown to API consumers.

editableboolean

You receive true when you can update or delete the framework.

formatsstring[]

You receive credential format identifiers such as mdoc or sd_jwt_vc for SD-JWT VC (Selective-Disclosure JWT Verifiable Credential).

governedboolean

You receive true when a governance authority manages the framework.

idstring uuid

You receive the stable UUID for this trust framework.

namestring

You receive the display name for the framework.

profilestring

You receive the interoperability profile for the framework.

regionstring

You receive the region or jurisdiction for the framework.

slugstring

You use this URL-safe identifier in the framework field when you register a trusted issuer.

trustedboolean

You receive true when this framework is currently trusted for the tenant. Governed frameworks are trusted by default.

member_issuer_countinteger

You receive the number of trusted issuers registered under this framework for the tenant.

Example response

[
  {
    "description": "Mobile driving licence (proximity + online).",
    "formats": [
      "mdoc"
    ],
    "governed": true,
    "id": "44f87e28-1869-46de-a029-af9dc748e1c0",
    "name": "ISO/IEC 18013-5 mDL",
    "profile": "ISO mDL",
    "region": "Global",
    "slug": "iso-mdl",
    "trusted": true,
    "member_issuer_count": 3
  }
]