From a008ab6e2a7ca864adfe7d14e221f8f9b90e40e8 Mon Sep 17 00:00:00 2001 From: Florin Coptil <59995268+flo0x@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:18:48 +0200 Subject: [PATCH] Update ewc-rfc005-issue-legal-person-identification-data.md Attached the LPID Schema (for the SD-_JWT format) --- ...-issue-legal-person-identification-data.md | 112 ++++++++++++++++++ 1 file changed, 112 insertions(+) diff --git a/ewc-rfc005-issue-legal-person-identification-data.md b/ewc-rfc005-issue-legal-person-identification-data.md index da03b3b..2cb6281 100644 --- a/ewc-rfc005-issue-legal-person-identification-data.md +++ b/ewc-rfc005-issue-legal-person-identification-data.md @@ -1168,6 +1168,118 @@ Schema } } ``` +### 5.10.4 LPID Schema (SD-JWT VC Format) +Attached is the LPID schema which can be used by the issuer to issue LPID credentials to the organization, either directly into the organization's wallet or as a QR code for mobile wallets. +```json +{ + "expiresIn": "12w", + "name": "LPID", + "claims": { + "legal_person_id": { + "display": [ + { + "name": "The EUID of the company", + "locale": "en-US" + } + ] + }, + "legal_person_name": { + "display": [ + { + "name": "The name of the company", + "locale": "en-US" + } + ] + }, + "issuer_name": { + "display": [ + { + "name": "Name of issuer from the MS that issued the ODI instance", + "locale": "en-US" + } + ] + }, + "issuer_id": { + "display": [ + { + "name": "Id of the issuing authority. (Business register identifier for BRIS)", + "locale": "en-US" + } + ] + }, + "issuer_country": { + "display": [ + { + "name": "Alpha-2 country code, as defined in ISO 3166-1, of the issuing country", + "locale": "en-US" + } + ] + }, + "issuance_date": { + "display": [ + { + "name": "Date and possibly time of issuance", + "locale": "en-US" + } + ] + }, + "expire_date": { + "display": [ + { + "name": "Date and possibly time of expiration", + "locale": "en-US" + } + ] + }, + "authentic_source_id": { + "display": [ + { + "name": "Source of the issuing (Business register identifier for BRIS, HRB, etc)", + "locale": "en-US" + } + ] + }, + "authentic_source_name": { + "display": [ + { + "name": "Name of issuer from the MS that issued the instance", + "locale": "en-US" + } + ] + }, + "credential_status": { + "display": [ + { + "name": "efines suspension and/or revocation details for the issued credential", + "locale": "en-US" + } + ] + }, + "credential_schema": { + "display": [ + { + "name": "One or more schemas that validate the Verifiable Credential.", + "locale": "en-US" + } + ] + } + }, + "displayCredential": [ + { + "name": "LPID", + "locale": "en-US", + "logo": { + "url": "https://identity-provider.gov/cover.jpeg", + "alt_text": "Government Identity Provider" + }, + "background_color": "#12107c", + "text_color": "#FFFFFF" + } + ] +} + +``` + ## 5.11 Issuer Authorization Verification During this process, the wallet queries the Trust Anchor to ascertain the issuer's trust status, thereby affirming that the issuer has been vetted and is compliant with established standards and regulations governing LPID. It ensures that only entities with verified trustworthiness can issue LPID. Further details will be added as soon as additional requirements are derived from ongoing discussions.