Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

List of verifiable credentials

Table of Contents
minLevel1
maxLevel7

Verifiable ID

Code Block
languagejson
{
    "credentialSubject": {
        "familyName": "EnterHereYourLastName",
        "firstName": "EnterHereYourFirstName",
        "dateOfBirth": "1983-06-21",
        "personalIdentifier": "12345678X"
    },
    "type": [
        "VerifiableCredential",
        "vIdCredential"
    ],
    "expirationDate": "2025-01-01T19:23:24Z"
}

StudentID (MyAcademicID)

Code Block
languagejson
{
    "type": [
        "VerifiableCredential",
        "studentIdCredential"
    ],
    "credentialSubject": {
        "identifier": [
            {
                "schemeID": "European Student Identifier",
                "value": "urn:schac:personalUniqueCode:int:esi:gataca.test:XXXYYYZZZ",
                "id": "urn:schac:personalUniqueCode:int:esi:gataca.test:XXXYYYZZZ"
            }
        ],
        "firstName": "EnterHereYourFirstName",
        "familyName": "EnterHereYourLastName"
    }
}

...

Verifiable Diploma

Code Block
languagejson
{
    "credentialSubject": {
        "identifier": {
            "schemeID": "Student identification number",
            "value": "XXXYYYZZZ"
        },
        "achieved": [
            {
                "id": "urn:epass:learningAchievement:1",
                "identifier": [
                    {
                        "schemeID": "XXX Certificate ID",
                        "value": "XXXYYYZZZ"
                    }
                ],
                "specifiedBy": [
                    {
                        "id": "urn:epass:qualification:1",
                        "eqflLevel": "http: //data.europa.eu/snb/eqf/6",
                        "title": "Software Engineer"
                    }
                ],
                "title": "Software Engineer",
                "wasAwardedBy": {
                    "awardingBody": [
                        "ACME University"
                    ],
                    "awardingDate": "2008-10-18T00:00:00Z",
                    "awardingLocation": [
                        "https: //essif.europa.eu/madrid"
                    ],
                    "id": "urn:epass:awardingProcess:1"
                },
                "hasPart": {
                    "learningAchievements": [
                        {
                            "id": "urn:epass:learningAchievement:XXXYYYYZZZ",
                            "specifiedBy": [
                                {
                                    "id": "urn:epass:qualification:2",
                                    "title": "Data Structures",
                                    "volumeOfLearning": "6"
                                }
                            ],
                            "title": "Data Structures",
                            "wasDerivedFrom": [
                                {
                                    "grade": "18",
                                    "id": "urn:epass:assessment:2",
                                    "title": "Data Structures"
                                }
                            ]
                        },
                        {
                            "id": "urn:epass:learningAchievement:XXXXYYYZZZZ",
                            "specifiedBy": [
                                {
                                    "id": "urn:epass:qualification:3",
                                    "title": "Programming II",
                                    "volumeOfLearning": "6"
                                }
                            ],
                            "title": "Programming II",
                            "wasDerivedFrom": [
                                {
                                    "grade": "15",
                                    "id": "urn:epass:assessment:3",
                                    "title": "Programming II"
                                }
                            ]
                        },
                        {
                            "id": "urn:epass:learningAchievement:4",
                            "specifiedBy": [
                                {
                                    "id": "urn:epass:qualification:4",
                                    "title": "Computer Architecture",
                                    "volumeOfLearning": "6"
                                }
                            ],
                            "title": "Computer Architecture",
                            "wasDerivedFrom": [
                                {
                                    "grade": "15",
                                    "id": "urn:epass:assessment:4",
                                    "title": "Computer Architecture"
                                }
                            ]
                        },
                        {
                            "id": "urn:epass:learningAchievement:5",
                            "specifiedBy": [
                                {
                                    "id": "urn:epass:qualification:5",
                                    "title": "Artificial Intelligence",
                                    "volumeOfLearning": "6"
                                }
                            ],
                            "title": "Artificial Intelligence",
                            "wasDerivedFrom": [
                                {
                                    "grade": "15",
                                    "id": "urn:epass:assessment:5",
                                    "title": "Artificial Intelligence"
                                }
                            ]
                        }
                    ]
                }
            }
        ]
    },
    "type": [
        "VerifiableCredential",
        "diplomaCredential"
    ]
}

Conference Ticket

Code Block
languagejson
{
    "credentialSubject": {
        "familyName": "Gómez",
        "firstName": "Samuel",
        "company": "Gataca",
        "role": "CTO",
        "eventName": "MWC Barcelona 23",
        "ticketType": "Startup"
    },
    "type": [
        "VerifiableCredential",
        "conferenceTicketCredential"
    ],
    "expirationDate": "2023-03-05T19:23:24Z"
}

...

Bank Account Record

Code Block
languagejson
{
   "credentialSubject":{
         "accountNumber":"ESXXXXXXXXXXXXXXXXX",
         "averageBalance":"10000",
         "averageBalanceYear":"1000000",
         "bankName":"ACME Bank",
         "firstName":"John",
         "lastName":"Doe",
         "swift":"XXXXX"
   },
    "expirationDate": "20232025-03-05T19:23:24Z"
}

Credit Card

Code Block
languagejson

{
	"credentialSubject": {
      "cardNumber": "1234 5678 9012 3456",
      "holderName": "Name Last Name",
      "expiryMonth": "12",
      "expiryYear": "2024",
      "cvv":"123"
    },
    "type": [
        "VerifiableCredential",
        "creditCardCredential"
    ],
    "expirationDate": "2024-12-01T19:23:24Z"
}