Skip to content

Commit

Permalink
Add LinkedVerifiablePresentation service endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb authored Jul 1, 2024
1 parent 4b39d58 commit dc29fa6
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1614,6 +1614,61 @@ <h4>LinkedDomains</h4>

</section>

<section>
<h4>LinkedVerifiablePresentation</h4>
<table class="simple" style="width: 100%;">
<thead>
<tr>
<th>Normative Definition</th>
<th>JSON-LD</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://identity.foundation/linked-vp/">Linked Verifiable Presentation</a>
</td>
<td>
<a href="https://identity.foundation/linked-vp/contexts/v1">Linked Verifiable Presentation</a>
</td>
</tr>
</tbody>
</table>

<pre class="example" title="Example of service and serviceEndpoint properties">
{
"@context": [
"https://www.w3.org/ns/did/v1",
"https://identity.foundation/linked-vp/contexts/v1"
],
"id": "did:example:123",
"verificationMethod": [{
"id": "did:example:123#_Qq0UL2Fq651Q0Fjd6TvnYE-faHiOpRlPVQcY_-tA4A",
"type": "JsonWebKey2020",
"controller": "did:example:123",
"publicKeyJwk": {
"kty": "OKP",
"crv": "Ed25519",
"x": "VCpo2LMLhn6iWku8MKvSLg2ZAoC-nlOyPVQaO3FxVeQ"
}
}],
"service": [
{
"id": "did:example:123#foo",
"type": "LinkedVerifiablePresentation",
"serviceEndpoint": ["https://bar.example.com/verifiable-presentation.jsonld"]
},
{
"id": "did:example:123#baz",
"type": "LinkedVerifiablePresentation",
"serviceEndpoint": "ipfs://bafybeihkoviema7g3gxyt6la7vd5ho32ictqbilu3wnlo3rs7ewhnp7lly/verifiable-presentation.jwt"
}
]
}
</pre>

</section>

<section>
<h4>DIDCommMessaging</h4>
<table class="simple" style="width: 100%;">
Expand Down

0 comments on commit dc29fa6

Please sign in to comment.