Skip to content
New issue

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

[PID Model] fixed typo from tax_id_number to tax_id_code #64

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/pid-data-model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Finally, the ``claims`` parameter contains the following mandatory claims:
* - **unique_id**
- [SD]. Unique citizen identifier (ID ANPR) given by the National Register of the Resident Population (ANPR). It MUST be set according to `ANPR rules <https://www.anagrafenazionale.interno.it/anpr/notizie/identificativo-unico-nazionale-idanpr/>`_
- This specification
* - **tax_id_number**
* - **tax_id_code**
- [SD]. National tax identification code of natural person as a String format. It MUST be set according to ETSI EN 319 412-1. For example ``TINIT-<ItalianTaxIdentificationNumber>``
- This specification

Expand Down Expand Up @@ -231,7 +231,7 @@ In the following, we provide a non-normative example of PID VC in JSON.
"country": "IT",
"locality": "Rome"
},
"tax_id_number": "TINIT-XXXXXXXXXXXXXXXX"
"tax_id_code": "TINIT-XXXXXXXXXXXXXXXX"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/en/pid-issuance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ Below a non-normative example of an Entity Configuration containing an `openid_c
}
]
},
"tax_id_number": {
"tax_id_code": {
"mandatory": true,
"display": [{
"name": "Tax Id Number",
Expand Down