Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Begin production rule definition #11

Merged
merged 6 commits into from
Jan 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h5>JSON Web Token Extensions</h5>
which contain those parts of the standard
<a>verifiable credentials</a> and
<a>verifiable presentations</a> where no explicit encoding rules for
JWT exist. These objects are enclosed in the JWT payload as follows:
JWT exist. These objects are enclosed in the JWT Claims Set as follows:
</p>

<ul>
Expand Down Expand Up @@ -180,7 +180,7 @@ <h6>JWT Encoding</h6>
<a>issuer</a> of the <a>verifiable credential</a>, or in the case of
a <a>verifiable presentation</a>, to the <a>holder</a> of the
<a>verifiable credential</a>. The JWS proves that the
<code>iss</code> of the JWT signed the contained JWT payload and
<code>iss</code> of the JWT signed the contained JWT Claims Set and
therefore, the <code>proof</code> <a>property</a> can be omitted.
</p>

Expand Down Expand Up @@ -391,7 +391,7 @@ <h6>JWT Decoding</h6>

<pre
class="example nohighlight"
title="JWT payload of a JWT-based verifiable credential using JWS as a proof (non-normative)"
title="JWT Claims Set of a JWT-based verifiable credential using JWS as a proof (non-normative)"
>
{
"sub": "did:example:ebfeb1f712ebc6f1c276e12ec21",
Expand Down Expand Up @@ -469,7 +469,7 @@ <h6>JWT Decoding</h6>

<pre
class="example nohighlight"
title="JWT payload of a JWT based verifiable presentation (non-normative)"
title="JWT Claims Set of a JWT based verifiable presentation (non-normative)"
>
{
"iss": "did:example:ebfeb1f712ebc6f1c276e12ec21",
Expand Down Expand Up @@ -566,7 +566,8 @@ <h3>In addition to...</h3>
There are several members (claims) of the
<code>Credential</code> which will need to be translated to their JOSE
form, and included next to the <code>vc</code> or
<code>vp</code> member in the <code>payload</code>.
<code>vp</code> member in the JWT Claims Set.
We refere to the JWT Claims Set as <code>payload</code> in this section.
OR13 marked this conversation as resolved.
Show resolved Hide resolved
</p>

<p>
Expand Down