-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #300 from IMSGlobal/update-main
Update ob_v2p0 from develop
- Loading branch information
Showing
6 changed files
with
62 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -557,6 +557,7 @@ Here, an endorser claims to have verified the email address published in the Pro | |
"type": "Endorsement", | ||
"id": "https://example.org/endorsement-123.json", | ||
"issuer": "https://example.org/issuer-5.json", | ||
"issuedOn": "2016-12-31T23:59:59+00:00", | ||
"claim": { | ||
"id": "https://example.org/organization.json", | ||
"email": "[email protected]", | ||
|
@@ -574,6 +575,7 @@ Another prominent use of Endorsements is to provide a comment expressing approva | |
"type": "Endorsement", | ||
"id": "https://example.org/endorsement-124.json", | ||
"issuer": "https://example.org/issuer-5.json", | ||
"issuedOn": "2016-12-31T23:59:59+00:00", | ||
"claim": { | ||
"id": "https://example.org/robotics-badge.json", | ||
"endorsementComment": "This badge and its associated learning material are great examples of beginning robotics education." | ||
|
@@ -591,6 +593,7 @@ The same method could be used to support a single recipient's achievement throug | |
"type": "Endorsement", | ||
"id": "https://example.org/endorsement-125.json", | ||
"issuer": "https://example.org/issuer-5.json", | ||
"issuedOn": "2016-12-31T23:59:59+00:00", | ||
"claim": { | ||
"id": "https://example.org/beths-robotics-badge.json", | ||
"endorsementComment": "This student built a great robot.", | ||
|
@@ -601,3 +604,15 @@ The same method could be used to support a single recipient's achievement throug | |
} | ||
} | ||
{% endhighlight %} | ||
|
||
An `Endorsement` may also be revoked by the Issuer. Here is an example of | ||
{% highlight json %} | ||
{ | ||
"@context": "https://w3id.org/openbadges/v2", | ||
"type": "Endorsement", | ||
"id": "https://example.org/endorsement-125.json", | ||
"issuer": "https://example.org/issuer-5.json", | ||
"revoked": true, | ||
"revocationReason": "Issued in error." | ||
} | ||
{% endhighlight %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.