@europeum-ebsi/vcdm1.1-nova-ims-egas-moniz-ects-credential-schema
v0.0.0
Published
Egas Moniz Digital Certification with ECTS (VCDM 1.1)
Readme
@europeum-ebsi/vcdm1.1-nova-ims-egas-moniz-ects-credential-schema
Egas Moniz Digital Certification with ECTS
Schema for Egas Moniz School of Health & Science educational credentials with ECTS credits, extending the EBSI Verifiable Attestation base schema.
The schema is published to the Trusted Schemas Registry with the IDs:
0xfed1ed3a89c6a41a6b39e68010bf3d50be3900e4dafc18595b3f354ff6006cc7(hexadecimal)zJ9iDVmByruMBy6cZuQndV2CNd1Dz9JCSXV3e2uxX5vTG(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Egas Moniz Digital Certification with ECTS",
"description": "Schema for Egas Moniz School of Health & Science educational credentials with ECTS credits, extending the EBSI Verifiable Attestation base schema.",
"type": "object",
"allOf": [
{
"$ref": "./node_modules/@europeum-ebsi/vcdm1.1-attestation-schema/schema.json"
},
{
"type": "object",
"properties": {
"credentialSubject": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uri",
"description": "DID of the credential subject (student)"
},
"firstName": {
"type": "string",
"description": "Student first name"
},
"familyName": {
"type": "string",
"description": "Student family name"
},
"courseName": {
"type": "string",
"description": "Name of the course or programme"
},
"specialization": {
"type": "string",
"description": "Area of specialization"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Course start date (ISO 8601)"
},
"endDate": {
"type": "string",
"format": "date",
"description": "Course end date (ISO 8601)"
},
"ectsCredits": {
"type": "integer",
"minimum": 1,
"maximum": 360,
"description": "European Credit Transfer and Accumulation System (ECTS) credits. 60 ECTS = 1 full academic year."
}
},
"required": [
"id",
"firstName",
"familyName",
"courseName",
"ectsCredits"
]
}
},
"required": ["credentialSubject"]
}
]
}Installation
# with npm
npm add @europeum-ebsi/[email protected]
# with Yarn
yarn add @europeum-ebsi/[email protected]
# with pnpm
pnpm add @europeum-ebsi/[email protected]Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@europeum-ebsi/vcdm1.1-nova-ims-egas-moniz-ects-credential-schema";
// you can now use the schema and metadataIn addition, the package exports a TypeScript type corresponding to the schema:
import type { EgasMonizDigitalCertificationWithECTS } from "@europeum-ebsi/vcdm1.1-nova-ims-egas-moniz-ects-credential-schema";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.
