Skip to content

Commit

Permalink
Fix incorrect context URL in examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
filip26 authored Sep 15, 2024
1 parent 0ad7383 commit c212df5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3665,7 +3665,7 @@ <h3>Zero-Knowledge Proofs</h3>
title="Verifiable credential using the Data Integrity BBS Cryptosuite with a Base Proof">
{
"@context": [
"https://www.w3.org/2018/credentials/v2",
"https://www.w3.org/ns/credentials/v2",
"https://w3id.org/citizenship/v3"
],
"type": ["VerifiableCredential", "PermanentResidentCard"],
Expand Down Expand Up @@ -3711,11 +3711,11 @@ <h3>Zero-Knowledge Proofs</h3>
<pre class="example nohighlight"
title="Verifiable presentation using the Data Integrity BBS Cryptosuite with a derived credential and proof">
{
@context: "https://www.w3.org/2018/credentials/v2"
@context: "https://www.w3.org/ns/credentials/v2"
type: "VerifiablePresentation",
verifiableCredential: {
"@context": [
"https://www.w3.org/2018/credentials/v2",
"https://www.w3.org/ns/credentials/v2",
"https://w3id.org/citizenship/v3"
],
"type": ["VerifiableCredential", "PermanentResidentCard"],
Expand Down Expand Up @@ -4470,7 +4470,7 @@ <h3>Media Type Precision</h3>
</li>
<li>
Ensure that the first element of the `@context` property matches
`https://www.w3.org/2018/credentials/v2`.
`https://www.w3.org/ns/credentials/v2`.
</li>
<li>
Assume an `application/vp` media type if the JSON document contains a top-level
Expand Down

0 comments on commit c212df5

Please sign in to comment.