VC type
Alumni

TASKS LIST

  • Add introduction
  • Create use cases
  • Document schema
  • Create references to standards and protocols

Alumni (AlumniCredential) type.

The AlumniCredential is a type of verifiable credential that certifies an individual's affiliation with an educational or corporate organization as an alumnus. This credential is designed to be a trusted and verifiable digital document that acknowledges a person’s completion of a program, degree, or employment at a specific institution or company.

Alumni credentials are used across various contexts, including educational institutions like universities and colleges, as well as corporate organizations where employees might be recognized for their contributions after they have left the company. The credential not only verifies the individual's past association with the organization but also provides detailed information about their achievements, roles, or degrees attained during their time there.

Examples

Alumni Credential Example for Educational Organization

{
  "@context": [
    "https://www.w3.org/2018/credentials/v1",
    "https://schema.org/"
  ],
  "type": [
    "VerifiableCredential",
    "AlumniCredential"
  ],
  "issuer": {
    "id": "did:example:123abcdef123456",
  },
  "issuanceDate": "2024-08-08T00:00:00Z",
  "credentialSubject": {
    "id": "did:example:abcdef123456",
    "type": "Person",
    "givenName": "John",
    "familyName": "Doe",
    "alumniOf": {
      "type": "EducationalOrganization",
      "name": "UC Berkeley",
      "logo": "ipfs://QmTy8w65yBXgyfG2ZBg5Tr...hash",
      "department": {
        "type": "CollegeOrUniversity",
        "name": "School of Engineering"
      },
      "degree": {
        "type": "EducationalOccupationalCredential",
        "credentialCategory": "BachelorDegree",
        "degreeType": "Bachelor of Science",
        "degreeField": "Computer Science"
      }
    },
    "honorificSuffix": "B.Sc.",
  },
  "credentialSchema": {
    "id": "https://schema.humancloud.network/v1/alumni-credential-schema.json",
    "type": "JsonSchemaValidator2018"
  },
  "proof": {
    "type": "JwtProof2020",
    "jws": "eyJhbGciOiJFZERTQSIsIm...signature"
  }
}

Alumni Credential Example for Corporate Organization (Xoogler)

{
  "@context": [
    "https://www.w3.org/2018/credentials/v1",
    "https://schema.org/"
  ],
  "type": [
    "VerifiableCredential",
    "AlumniCredential"
  ],
  "issuer": {
    "id": "did:example:789ghijk789012"
  },
  "issuanceDate": "2024-08-08T00:00:00Z",
  "credentialSubject": {
    "id": "did:example:ghijk789012345",
    "type": "Person",
    "givenName": "Jane",
    "familyName": "Smith",
    "alumniOf": {
      "type": "Organization",
      "name": "Google",
      "logo": "ipfs://QmExampleLogoHash",
      "department": {
        "type": "Organization",
        "name": "Google Engineering"
      },
      "role": {
        "type": "EmployeeRole",
        "jobTitle": "Software Engineer",
        "startDate": "2018-06-01",
        "endDate": "2023-05-31"
      }
    },
    "honorificSuffix": "Xoogler"
  },
  "credentialSchema": {
    "id": "https://schema.humancloud.network/v1/xoogler-credential-schema.json",
    "type": "JsonSchemaValidator2018"
  },
  "proof": {
    "type": "JwtProof2020",
    "jws": "eyJhbGciOiJFZERTQSIsIm...signature"
  }
}