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

added human readable/machine readable, changed example to be more clear. #138

Merged
merged 6 commits into from
Apr 6, 2024
Merged
Changes from 1 commit
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
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -636,10 +636,10 @@ <h3>BitstringStatusListCredential</h3>
minimum two properties:
<ul>
<li id="status">
`status`, being a string of the hex value of the status
`status`, being a machine readable string of the hex value of the status
mkhraisha marked this conversation as resolved.
Show resolved Hide resolved
</li>
<li id="message">
`message`, being a string containing the associated message
`message`, being a human readable string containing the associated message
mkhraisha marked this conversation as resolved.
Show resolved Hide resolved
</li>
</ul>
Implementers MAY add additional values to objects in the `statusMessage` array.
Expand Down Expand Up @@ -710,9 +710,9 @@ <h3>BitstringStatusListCredential</h3>
"statusReference": "https://example.org/status-dictionary/",
"statusSize": 2,
"statusMessage": [
{"status":"0x0", "message":"valid"},
{"status":"0x1", "message":"invalid"},
{"status":"0x2", "message":"pending_review"},
{"status":"0x0", "message":"Valid"},
{"status":"0x1", "message":"Invalid"},
{"status":"0x2", "message":"Pending review"},
...
],
"encodedList": "uH4sIAAAAAAAAA-3BMQEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAIC3AYbSVKsAQAAA"
Expand Down
Loading