TASKS LIST
- Add introduction
- Create use cases
- Document schema
- Create references to standards and protocols
Event Participation (EventParticipationCredential) type.
The EventParticipationCredential is a type of verifiable credential designed to confirm an individual's participation in an event. Whether it’s a conference, competition, workshop, or any other organized gathering, this credential provides a secure and verifiable way to document and acknowledge a person's involvement.
EventParticipationCredentials are particularly valuable in professional, educational, and creative industries where participation in certain events can significantly enhance an individual's portfolio, resume, or professional standing. By issuing such a credential, event organizers can formally recognize attendees, speakers, competitors, or contributors, ensuring that their participation is documented and easily verifiable by third parties.
Examples
Example of a Confirmed Participation in the Red Dot Design Award
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://schema.org/"
],
"type": [
"VerifiableCredential",
"EventParticipationCredential"
],
"issuer": {
"id": "did:example:reddot123",
"name": "Red Dot Design Award",
"logo": "ipfs://QmRedDotLogoHashExample"
},
"issuanceDate": "2024-08-08T00:00:00Z",
"credentialSubject": {
"id": "did:example:emilywatson789",
"type": "Person",
"givenName": "Emily",
"familyName": "Watson",
"participatesIn": {
"type": "Event",
"name": "Red Dot Design Award 2024",
"startDate": "2024-09-01",
"endDate": "2024-09-30",
"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"
}
}if no role are defined then it defaults to "Participant".
...
"participatesIn": {
"type": "Event",
"name": "Red Dot Design Award 2024",
"role": "Participant",
...}
...Example for Confirmed as Speaker at CES 2024 in Las Vegas
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://schema.org/"
],
"type": [
"VerifiableCredential",
"EventParticipationCredential"
],
"issuer": {
"id": "did:example:ces2024",
"name": "Consumer Technology Association",
"logo": "ipfs://QmCESLogoHashExample"
},
"issuanceDate": "2024-01-05T00:00:00Z",
"credentialSubject": {
"id": "did:example:sarahsmith789",
"type": "Person",
"givenName": "Sarah",
"familyName": "Smith",
"participatesIn": {
"type": "Event",
"name": "CES 2024",
"role": "Speaker",
"startDate": "2024-01-09",
"endDate": "2024-01-12",
"location": {
"type": "Place",
"name": "Las Vegas Convention Center",
"address": "3150 Paradise Rd, Las Vegas, NV 89109, USA"
},
"organizer": {
"type": "Organization",
"name": "Consumer Technology Association",
"logo": "ipfs://QmCESOrgLogoHashExample",
"url": "https://www.ces.tech"
}
}
},
"proof": {
"type": "JwtProof2020",
"jws": "eyJhbGciOiJFZERTQSIsIm...signature"
}
}