TASKS LIST
- Add introduction
- Create use cases
- Document schema
- Create references to standards and protocols
Award (AwardCredential) type.
The AwardCredential is a type of verifiable credential designed to recognize and document the receipt of an award or honor. This credential provides a secure and verifiable way to acknowledge an individual's or organization's achievements, ensuring that their accomplishments are formally recognized and easily shareable in professional, academic, or personal contexts.
AwardCredentials are particularly valuable in industries and fields where awards serve as a testament to excellence, innovation, or outstanding contributions. Whether the award is for design, academic performance, leadership, or any other significant achievement, the AwardCredential serves as a trusted record that can be verified by third parties.
Examples
Example: AwardCredential for a Red Dot Design Award Winner
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://schema.org/"
],
"type": [
"VerifiableCredential",
"AwardCredential"
],
"issuer": {
"id": "did:example:reddot123",
"name": "Red Dot Design Award",
"logo": "ipfs://QmRedDotLogoHashExample"
},
"issuanceDate": "2024-10-01T00:00:00Z",
"credentialSubject": {
"id": "did:example:emilywatson789",
"type": "Person",
"givenName": "Emily",
"familyName": "Watson",
"award": {
"type": "CreativeWork",
"name": "Red Dot Best of the Best",
"category": "Product Design - Furniture",
"awardDate": "2024-09-30",
"description": "Awarded for the most outstanding product design in the furniture category.",
"recipient": {
"type": "Person",
"givenName": "Emily",
"familyName": "Watson"
},
"event": {
"type": "Event",
"name": "Red Dot Design Award 2024",
"location": {
"type": "Place",
"name": "Red Dot Design Museum, Essen",
"address": "Gelsenkirchener Str. 181, 45309 Essen, Germany"
},
"organizer": {
"type": "Organization",
"name": "Red Dot GmbH & Co. KG",
"logo": "ipfs://QmRedDotOrganisationLogoHashExample",
"url": "https://www.red-dot.org"
}
}
}
},
"proof": {
"type": "JwtProof2020",
"jws": "eyJhbGciOiJFZERTQSIsIm...signature"
}
}