Skip to content

Commit

Permalink
Update ewc-rfc005-issue-legal-person-identification-data.md
Browse files Browse the repository at this point in the history
Attached the LPID Schema (for the SD-_JWT format)
  • Loading branch information
flo0x authored Sep 2, 2024
1 parent bc05e63 commit a008ab6
Showing 1 changed file with 112 additions and 0 deletions.
112 changes: 112 additions & 0 deletions ewc-rfc005-issue-legal-person-identification-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a008ab6

Please sign in to comment.