Skip to content

Commit

Permalink
Replace example.com references with .example TLD.
Browse files Browse the repository at this point in the history
  • Loading branch information
msporny committed Aug 9, 2024
1 parent 560301a commit 861ff6a
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1884,7 +1884,7 @@ <h3>Issuer</h3>
<p class="note"
title="The identifier for an issuer can be any URL">
The value of the `issuer` [=property=] can also be a JWK (for
example, `"https://example.com/keys/foo.jwk"`) or a [=DID=] (for
example, `"https://jwk.example/keys/foo.jwk"`) or a [=DID=] (for
example, `"did:example:abfe13f712120431c276e12ecab"`).
</p>

Expand Down Expand Up @@ -1953,7 +1953,7 @@ <h3>Credential Subject</h3>
],
"id": "http://university.example/credentials/3732",
"type": ["VerifiableCredential", "RelationshipCredential"],
"issuer": "https://example.com/issuer/123",
"issuer": "https://issuer.example/issuer/123",
"validFrom": "2010-01-01T00:00:00Z",
"credentialSubject": <span class="highlight">[{
"id": "did:example:ebfeb1f712ebc6f1c276e12ec21",
Expand Down Expand Up @@ -2870,18 +2870,17 @@ <h3>Extensibility</h3>
<li>
Extend the machine-readable vocabularies used to describe information in the
data model, without the use of a centralized system for doing so, through the
use of [[?LINKED-DATA]].
use of Linked Data [[?LINKED-DATA]].
</li>
<li>
Support multiple types of cryptographic proof formats through the use of JOSE or
COSE [[VC-JOSE-COSE]], Data Integrity Proofs [[VC-DATA-INTEGRITY]], and a
variety of cryptographic suites listed in the Verifiable Credential
Specifications Directory [[?VC-SPECS]].
Support multiple types of cryptographic proof formats through the use of
[[[VC-JOSE-COSE]]], [[[VC-DATA-INTEGRITY]]], and a variety of cryptographic
suites listed in the [[[?VC-SPECS]]].
</li>
<li>
Provide all of the extensibility mechanisms outlined above in a data format that
is popular with software developers and web page authors, and is enabled through
the use of [[JSON-LD11]].
the use of [[[JSON-LD11]]].
</li>
</ul>

Expand All @@ -2900,7 +2899,7 @@ <h3>Extensibility</h3>
</p>

<p>
Let us assume we start with the [=verifiable credential=] shown below.
Let us assume we start with the [=credential=] shown below.
</p>

<pre class="example nohighlight vc"
Expand All @@ -2911,9 +2910,9 @@ <h3>Extensibility</h3>
"https://www.w3.org/ns/credentials/v2",
"https://www.w3.org/ns/credentials/examples/v2"
],
"id": "http://example.com/credentials/4643",
"id": "http://vc.example/credentials/4643",
"type": ["VerifiableCredential"],
"issuer": "https://example.com/issuers/14",
"issuer": "https://issuer.example/issuers/14",
"validFrom": "2018-02-24T05:28:04Z",
"credentialSubject": {
"id": "did:example:abcdef1234567",
Expand Down Expand Up @@ -2942,8 +2941,8 @@ <h3>Extensibility</h3>
<pre class="example nohighlight" title="A JSON-LD context">
{
"@context": {
"referenceNumber": "https://example.com/vocab#referenceNumber",
"favoriteFood": "https://example.com/vocab#favoriteFood"
"referenceNumber": "https://extension.example/vocab#referenceNumber",
"favoriteFood": "https://extension.example/vocab#favoriteFood"
}
}
</pre>
Expand All @@ -2952,7 +2951,7 @@ <h3>Extensibility</h3>
After this JSON-LD context is created, the developer publishes it somewhere so
it is accessible to [=verifiers=] who will be processing the
[=verifiable credential=]. Assuming the above JSON-LD context is published at
`https://example.com/contexts/mycontext.jsonld`, we can extend this
`https://extension.example/contexts/mycontext.jsonld`, we can extend this
example by including the context and adding the new [=properties=] and
[=credential=] [=type=] to the [=verifiable credential=].
</p>
Expand All @@ -2963,11 +2962,11 @@ <h3>Extensibility</h3>
"@context": [
"https://www.w3.org/ns/credentials/v2",
"https://www.w3.org/ns/credentials/examples/v2",
<span class="highlight">"https://example.com/contexts/mycontext.jsonld"</span>
<span class="highlight">"https://extension.example/contexts/mycontext.jsonld"</span>
],
"id": "http://example.com/credentials/4643",
"id": "http://vc.example/credentials/4643",
"type": ["VerifiableCredential", "CustomExt12"],
"issuer": "https://example.com/issuers/14",
"issuer": "https://issuer.example/issuers/14",
"validFrom": "2018-02-24T05:28:04Z",
<span class="highlight">"referenceNumber": 83294847,</span>
"credentialSubject": {
Expand Down Expand Up @@ -3398,7 +3397,7 @@ <h3>Terms of Use</h3>
"termsOfUse": {
"type": "TrustFrameworkPolicy",
"trustFramework": "Employment&Life",
"policyId": "https://example.com/policies/125",
"policyId": "https://policy.example/policies/125",
"legalBasis": "professional qualifications directive"
}</span>,
"credentialStatus": {
Expand Down Expand Up @@ -3512,7 +3511,7 @@ <h3>Evidence</h3>
},
"evidence": [{
<span class='comment'>// url to an externally hosted evidence file/artifact</span>
"id": "https://videos.example.com/training/alice-espresso.mp4",
"id": "https://videos.example/training/alice-espresso.mp4",
"type": ["Evidence"],
"name": "Talk-aloud video of double espresso preparation",
"description": "This is a talk-aloud video of Alice demonstrating preparation of a double espresso drink.",
Expand Down

0 comments on commit 861ff6a

Please sign in to comment.