Skip to content

Commit 5b93e96

Browse files
danielfettDaniel Fettbc-pi
authored
Add PID example (#214)
* Add PID example * Of course I forgot to add the new files * Apply suggestions from Brian's review Co-authored-by: Brian Campbell <[email protected]> * Disclose only nationality * Add changelog entry * Fix yaml specification * Adapt text * Fix the description of the example * Input claim(s) --------- Co-authored-by: Daniel Fett <[email protected]> Co-authored-by: Brian Campbell <[email protected]>
1 parent e4e3b69 commit 5b93e96

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

draft-ietf-oauth-sd-jwt-vc.md

+53
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,13 @@ format encoded as CBOR and secured using COSE.
665665
</author>
666666
</front>
667667
</reference>
668+
669+
<reference anchor="EUDIW.ARF" target="https://github.com/eu-digital-identity-wallet/eudi-doc-architecture-and-reference-framework/releases">
670+
<front>
671+
<author fullname="European Commission"></author>
672+
<title>The European Digital Identity Wallet Architecture and Reference Framework</title>
673+
</front>
674+
</reference>
668675
{backmatter}
669676

670677
# IANA Considerations
@@ -714,6 +721,51 @@ by [@!RFC5785].
714721
* Specification document: [[ (#jwt-vc-issuer-metadata) of this of this specification ]]
715722
* Related information: (none)
716723

724+
# Examples
725+
726+
Important: The following examples are not normative and provided for
727+
illustrative purposes only. In particular, neither the structure of the claims
728+
nor the selection of selectively disclosable claims are normative.
729+
730+
Line breaks have been added for readability.
731+
732+
## Example 1: Person Identification Data (PID) Credential
733+
734+
This example shows how the artifacts defined in this specification could
735+
be used to represent the concept of a Person Identification Data (PID)
736+
[@EUDIW.ARF] using the data of a German citizen.
737+
738+
Key Binding is applied
739+
using the Holder's public key passed in a `cnf` claim in the SD-JWT.
740+
741+
The Issuer is using the following input claims set:
742+
743+
<{{examples/03-pid/user_claims.json}}
744+
745+
The following is the issued SD-JWT:
746+
747+
<{{examples/03-pid/sd_jwt_issuance.txt}}
748+
749+
The following payload is used for the SD-JWT:
750+
751+
<{{examples/03-pid/sd_jwt_payload.json}}
752+
753+
The following Disclosures are created by the Issuer:
754+
755+
{{examples/03-pid/disclosures.md}}
756+
757+
The following shows a presentation of the SD-JWT with a Key Binding JWT that discloses only the nationality of the Holder:
758+
759+
<{{examples/03-pid/sd_jwt_presentation.txt}}
760+
761+
The following is the payload of a corresponding Key Binding JWT:
762+
763+
<{{examples/03-pid/kb_jwt_payload.json}}
764+
765+
After the validation, the Verifier will have the following data for further processing:
766+
767+
<{{examples/03-pid/verified_contents.json}}
768+
717769
# Acknowledgements {#Acknowledgements}
718770

719771
We would like to thank
@@ -745,6 +797,7 @@ for their contributions (some of which substantial) to this draft and to the ini
745797
* Fix some formatting and text in the media type and JWT claim registration requests
746798
* Clarify the optionality of the `cnf` claim
747799
* Added relationships to other documents
800+
* Added PID example
748801

749802
-01
750803

examples/03-pid/specification.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
user_claims:
2+
vct: https://bmi.bund.example/credential/pid/1.0
3+
# vct#integrity: sha256-jo8433ot48utul8ura33
4+
!sd given_name: Erika
5+
!sd family_name: Mustermann
6+
!sd birthdate: '1963-08-12'
7+
!sd source_document_type: id_card
8+
!sd address:
9+
!sd street_address: Heidestraße 17
10+
!sd locality: Köln
11+
!sd postal_code: '51147'
12+
!sd country: DE
13+
!sd nationalities:
14+
- DE
15+
!sd gender: female
16+
!sd birth_family_name: Gabler
17+
!sd place_of_birth:
18+
!sd locality: Berlin
19+
country: DE
20+
!sd also_known_as: Schwester Agnes
21+
age_equal_or_over:
22+
!sd '12': true
23+
!sd '14': true
24+
!sd '16': true
25+
!sd '18': true
26+
!sd '21': true
27+
!sd '65': false
28+
29+
30+
holder_disclosed_claims:
31+
nationalities:
32+
- true
33+
#age_equal_or_over:
34+
# '18': true
35+
36+
add_decoy_claims: false
37+
key_binding: true
38+
39+
extra_header_parameters:
40+
typ: "vc+sd-jwt"

0 commit comments

Comments
 (0)