We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The credential issuer metadata field credentials_supported received in RFC001 3.4 Discover response must not be an array, but an object according to OID4VCI draft 12 Section 10.2.3
credentials_supported
Current:
"credentials_supported": [ { "format": "jwt_vc", "types": [ "VerifiableCredential", "VerifiableAttestation", "VerifiablePortableDocumentA1" ], "trust_framework": { "name": "ebsi", "type": "Accreditation", "uri": "TIR link towards accreditation" }, "display": [ { "name": "Portable Document A1", "locale": "en-GB" } ] } ]
Expected:
"credentials_supported": { "VerifiablePortableDocumentA1": { "format": "vc+sd-jwt", ... }, "VerifiablePortableDocumentA2": { "format": "vc+sd-jwt", ... } }
The text was updated successfully, but these errors were encountered:
This change is accepted. The supported credential formats are documented here: https://github.com/EWC-consortium/eudi-wallet-rfcs/blob/main/ewc-supported-formats.csv
Sorry, something went wrong.
7ab4e48
Fix #9: Updated discover response to support EBSI formats
44bf8c6
Signed-off-by: Lal Chandran <[email protected]>
georgepadayatti
No branches or pull requests
The credential issuer metadata field
credentials_supported
received in RFC001 3.4 Discover response must not be an array, but an object according to OID4VCI draft 12 Section 10.2.3Current:
Expected:
The text was updated successfully, but these errors were encountered: