@europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential
v0.0.0
Published
European Vocational Education and Training Microcredential (VCDM 1.1)
Downloads
6
Readme
@europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential
European Vocational Education and Training Microcredential
Profile schema extending the base EDC-W3C-VC to define microcredentials issued by vocational education and training institutions in Europe.
The schema is published to the Trusted Schemas Registry with the IDs:
0xe4e9f04410f286402fed8bb1f90ca16ae643ea94065acc288daa53ce084e8378(hexadecimal)zGQarPWajASnLPybUSyvam422AMnKeJ24bES4TeM6tm27(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "European Vocational Education and Training Microcredential",
"description": "Profile schema extending the base EDC-W3C-VC to define microcredentials issued by vocational education and training institutions in Europe.",
"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",
"EuropeanVocationalEducationTrainingMicrocredential"
]
},
"credentialSubject": {
"type": "object",
"required": [
"id",
"type",
"dateOfBirth",
"familyName",
"givenName",
"hasClaim"
],
"properties": {
"hasClaim": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"type",
"title",
"awardedBy",
"specifiedBy",
"provenBy"
],
"properties": {
"type": {
"type": "string",
"const": "LearningAchievement"
},
"creditReceived": {
"type": "array",
"minItems": 1,
"maxItems": 3,
"items": {
"type": "object",
"required": ["framework", "point"],
"properties": {
"framework": {
"type": "object",
"properties": {
"notation": {
"enum": ["ECVET"]
}
},
"required": ["notation"]
},
"point": {
"type": "string",
"pattern": "^(1[0-5]|[1-9])$"
}
}
}
},
"provenBy": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": ["grade", "specifiedBy", "awardedBy"]
}
},
"awardedBy": {
"type": "object",
"required": ["awardingBody", "awardingDate", "location"],
"properties": {
"awardingBody": {
"type": "object"
},
"awardingDate": {
"type": "string",
"format": "date-time"
},
"location": {
"type": "object"
}
}
},
"specifiedBy": {
"type": "object",
"required": [
"creditPoint",
"educationSubject",
"mode",
"eqfLevel"
],
"properties": {
"creditPoint": {
"type": "array",
"minItems": 1
},
"educationSubject": {
"type": "array",
"minItems": 1
},
"mode": {
"type": "array",
"minItems": 1
},
"eqfLevel": {
"type": "object",
"required": ["notation"],
"properties": {
"notation": {
"type": "string"
}
}
}
}
}
}
}
}
}
},
"displayParameter": {
"type": "object"
},
"credentialProfiles": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
]
}Installation
# with npm
npm add @europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential@0.0.0
# with Yarn
yarn add @europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential@0.0.0
# with pnpm
pnpm add @europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential@0.0.0Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential";
// you can now use the schema and metadataIn addition, the package exports a TypeScript type corresponding to the schema:
import type { EuropeanVocationalEducationAndTrainingMicrocredential } from "@europeum-ebsi/vcdm1.1-dc4eu-vocational-education-and-training-microcredential";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.
