-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
When receiving a credential from the Credential Endpoint we'd like an Issuer to be able to provide optional "card art" and a description.
For example an CredentialResponse maybe extended as follows:
{
"display": [
{
"locale": "en-US",
"name": "Lee's Tribank Card"
"description": "5423 4343 2334 XXXX"
"logo": {
"uri": "data:image/png;base64,F00==",
"alt_text": "credit card image"
},
}
]
"credentials": [
{
"credential": "LUpixVCWJk0eOt4CXQe1NXK....WZwmhmn9OQp6YxX0a2L"
}
]
}
This allows the wallet to display the credential with personalized cardart and descriptions in a standardized way, regardless of credential format or doctype. See this screenshot for an example of customized logo, title and description.
