{
// --- Identity ---
"sub": "...", // Unique subject identifier
"user": { // Personal attributes (from /userinfo)
"name": "...",
"birthdate": "..."
},
// --- Assurance ---
"acr": "...",
"hopae_loa": 3,
"hopae_loa_label": "substantial",
"missing_claims": ["email", "address"],
// --- Verification Story ---
"provenance": {
"presentation": {
"channel": { "type": "...", "transport": "..." },
"credentials": [
{
"type": "smartid",
"issuer": { "id": "...", "authority_name": "...", "is_government": false },
// `type` matches the providerId you supplied when creating the session; evidence keys vary per provider
"evidence": {
"token": {
"<token_key>": "...",
"<another_key>": "...",
"...": "..."
},
"names": "<token_key>;<another_key>;..."
}, // optional, may be absent
"claims": { ... }
}
]
},
"_metadata": { "verification_id": "...", "verified_at": "..." }
}
}