Skip to content

Commit

Permalink
Identity Resolver page updates (#254)
Browse files Browse the repository at this point in the history
Added some overview of a generic process from data carrier to UNTP
credentials. Also generalising to multiple identifier types. Also
conventions about URI structure so that identifers are the same thing
can be consistently matched across different data sources.

---------

Signed-off-by: Steven Capell <[email protected]>
Signed-off-by: Phil Archer <[email protected]>
Co-authored-by: Ashley Harwood <[email protected]>
Co-authored-by: Phil Archer <[email protected]>
Co-authored-by: Ashley Harwood <[email protected]>
  • Loading branch information
4 people authored Feb 6, 2025
1 parent 61b58a8 commit 90b75c6
Show file tree
Hide file tree
Showing 6 changed files with 562 additions and 49 deletions.
16 changes: 10 additions & 6 deletions website/docs/specification/DigitalIdentityAnchor.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,12 @@ As described in the [W3C Decentralized Identifiers](https://www.w3.org/TR/did-co
"alsoKnownAs": ["https://sample-register.gov/90664869327"],
"service": [{
"id":"did:web:sample-business.com:123456789#90664869327",
"type": "DigitalIdentityAnchor",
"serviceEndpoint": "https://sample-credential-store.com/credentials/dia-90664869327.json"
"type":"untp:dia"
"serviceEndpoint": {
"href":"https://sample-credential-store.com/credentials/dia-90664869327.json",
"title":"Digital Identity Anchor",
"type": "application/vc+jwt"
}
}]
}
```
Expand All @@ -189,21 +193,21 @@ The resolver service may be called with parameters that define which link-types
"linkset": [
{
"anchor": "https://resolver.sample-register.gov/vatNumber/90664869327",
"https://vocabulary.uncefact.org/untp/linkType#digitalIdentityAnchor": [
"untp:dia": [
{
"href": "https://sample-credential-store.com/credentials/dia-90664869327.json",
"title": "Digital Identity Anchor",
"type": "application/json"
"type": "application/vc+jwt"
}
]
},
{
"anchor": "https://resolver.sample-register.gov/vatNumber/90664869327",
"https://sample-register.gov/registrationHistory": [
"about": [
{
"href": "https://sample-register.gov/registrationHistory?id=90664869327",
"title": "Registration History",
"type": "application/json"
"type": "text/html"
}
]
},
Expand Down
Loading

0 comments on commit 90b75c6

Please sign in to comment.