@europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records
v0.0.0
Published
European Upper Secondary Education Transcript of Records (VCDM 1.1)
Readme
@europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records
European Upper Secondary Education Transcript of Records
Profile schema extending the base EDC-W3C-VC to define transcript credentials for upper secondary education.
The schema is published to the Trusted Schemas Registry with the IDs:
0xb5a51d26d9bb34f6289e68c1423fce785731281ede14a89d492a0c42dd4ce322(hexadecimal)zDE4pcK8ZarNn46vSPtw7fpY9Pd8ohiPc64caYWqcpzHw(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "European Upper Secondary Education Transcript of Records",
"description": "Profile schema extending the base EDC-W3C-VC to define transcript credentials for upper secondary education.",
"type": "object",
"allOf": [
{
"$ref": "./node_modules/@europeum-ebsi/vcdm1.1-europass-edc-schema/schema.json"
},
{
"type": "object",
"properties": {
"type": {
"type": "array",
"items": {
"type": "string"
},
"const": [
"VerifiableCredential",
"VerifiableAttestation",
"EuropeanDigitalCredential",
"EuropeanUpperSecondaryEducationTranscriptOfRecords"
]
},
"credentialSubject": {
"type": "object",
"required": [
"id",
"type",
"dateOfBirth",
"familyName",
"givenName",
"hasClaim"
],
"properties": {
"hasClaim": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": ["type", "awardedBy", "wasDerivedFrom"],
"properties": {
"type": {
"type": "string",
"const": "LearningAchievement"
},
"awardedBy": {
"type": "object",
"required": ["awardingBody", "location"],
"properties": {
"awardingBody": {
"type": "object"
},
"location": {
"type": "object"
}
}
},
"wasDerivedFrom": {
"type": "array",
"items": {
"type": "object",
"required": ["title", "grade", "temporal"],
"properties": {
"title": {
"type": "object"
},
"creditPoint": {
"type": "array"
},
"grade": {
"type": "object"
},
"gradingScheme": {
"type": "object"
},
"temporal": {
"type": "object",
"required": ["startDate", "endDate"],
"properties": {
"startDate": {
"type": "string",
"format": "date"
},
"endDate": {
"type": "string",
"format": "date"
}
}
}
}
}
}
}
}
}
}
},
"displayParameter": {
"type": "object"
},
"credentialProfiles": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
]
}Installation
# with npm
npm add @europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records@0.0.0
# with Yarn
yarn add @europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records@0.0.0
# with pnpm
pnpm add @europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records@0.0.0Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records";
// you can now use the schema and metadataIn addition, the package exports a TypeScript type corresponding to the schema:
import type { EuropeanUpperSecondaryEducationTranscriptOfRecords } from "@europeum-ebsi/vcdm1.1-dc4eu-upper-secondary-education-transcript-of-records";License
Copyright (C) 2026 European Union
This program is free software: you can redistribute it and/or modify it under the terms of the EUROPEAN UNION PUBLIC LICENCE v. 1.2 as published by the European Union.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the EUROPEAN UNION PUBLIC LICENCE v. 1.2 for further details.
You should have received a copy of the EUROPEAN UNION PUBLIC LICENCE v. 1.2. along with this program. If not, see https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.
