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

Clarify what credential status information is about. #106

Merged
merged 2 commits into from
Jan 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,14 @@ <h3>Conceptual Framework</h3>

<p>
This section outlines the core concept utilized by the status list
mechanism described in this document. At the most basic level, status
mechanism described in this specification. At the most basic level, status
information for all <a>verifiable credentials</a> issued by an <a>issuer</a>
are expressed as simple binary values. The <a>issuer</a> keeps a bitstring
list of all <a>verifiable credentials</a> it has issued. Each
<a>verifiable credential</a> is associated with a position in the list. If
the binary value of the position in the list is 1 (one), the
<a>verifiable credential</a> is revoked, if it is 0 (zero) it is not revoked.
is expressed as items in a list. Each <a>issuer</a> manages a list
of all <a>verifiable credentials</a> that it has issued. Each
<a>verifiable credential</a> is associated with an item in its list.
When a single bit specifies a status, such as "revoked" or "suspended",
then that status is expected to be true when the bit is set (`1`) and
false when unset (`0`).
</p>

<p>
Expand Down Expand Up @@ -270,6 +271,17 @@ <h3>Conceptual Framework</h3>
</figcaption>
</figure>

<p class="note"
title="Status information is about the verifiable credential">
The status information associated with a particular <a>verifiable credential</a>
is about the <a>verifiable credential</a> itself and might not apply to any
underlying or backing <a>credential</a>, such as an educational degree. For
example, in the case of such an educational degree, it is possible for a
<a>verifiable credential</a> to be revoked because the mechanism used to
create its digital signature has been compromised, while the backing educational
degree remains valid.
</p>

</section>

<section class="informative">
Expand Down