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 request in RFC001 3.9 Credential request is not adopting the credential request for jwt_vc_json in OID4VCI draft 12 Appendix E.1.1.5
jwt_vc_json
The current version is using a types field which is not defined in the spec and it is using the wrong format identifier jwt_vc should be jwt_vc_json.
types
jwt_vc
Current:
{ "format": "jwt_vc", "proof": { "jwt": "eyJraWQiOiJkaWQ6a2...su7UFClz9NQnw", "proof_type": "jwt" }, "types": [ "VerifiableCredential", "VerifiableAttestation", "VerifiablePortableDocumentA1" ] }
Expected:
{ "format": "jwt_vc_json", "credential_definition": { "type": [ "VerifiableCredential", "UniversityDegreeCredential" ], "credentialSubject": { "given_name": {}, "family_name": {}, "degree": {} } }, "proof": { "proof_type": "jwt", "jwt":"eyJraWQiOiJkaWQ6ZXhhbXBsZTplYmZlYjFmNzEyZWJjNmYxYzI3NmUxMmVjMjEva2V5cy8 xIiwiYWxnIjoiRVMyNTYiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJzNkJoZFJrcXQzIiwiYXVkIjoiaHR 0cHM6Ly9zZXJ2ZXIuZXhhbXBsZS5jb20iLCJpYXQiOiIyMDE4LTA5LTE0VDIxOjE5OjEwWiIsIm5vbm NlIjoidFppZ25zbkZicCJ9.ewdkIkPV50iOeBUqMXCC_aZKPxgihac0aW9EkL1nOzM" } }
The text was updated successfully, but these errors were encountered:
5d8f630
Fix #10: Credential request format and types are not following the OI…
e529936
…D4VCI draft 12 Signed-off-by: Lal Chandran <[email protected]>
lalc
georgepadayatti
No branches or pull requests
The credential request in RFC001 3.9 Credential request is not adopting the credential request for
jwt_vc_json
in OID4VCI draft 12 Appendix E.1.1.5The current version is using a
types
field which is not defined in the spec and it is using the wrong format identifierjwt_vc
should bejwt_vc_json
.Current:
Expected:
The text was updated successfully, but these errors were encountered: