@europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema
v0.0.0
Published
EBSI type extension for use of IssuanceCertificate
Downloads
312
Readme
@europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema
EBSI Type Extension for use of IssuanceCertificate
Defines accredited trust chain bindings for an issued Verifiable Credentials
The schema is published to the Trusted Schemas Registry with the IDs:
0xbcf6df5f8342a849dd32f3c5082f958fda7de54380f1264c8a5713f46deefdfd(hexadecimal)zDidyzBSNZV1jwjauh6CPYJL6cy6XWcHjbeMXQXmTzox8(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EBSI Type Extension for use of IssuanceCertificate",
"description": "Defines accredited trust chain bindings for an issued Verifiable Credentials",
"type": "object",
"properties": {
"termsOfUse": {
"anyOf": [
{
"$ref": "#/$defs/termsOfUse"
},
{
"type": "array",
"description": "One item must match the type extension",
"contains": {
"$ref": "#/$defs/termsOfUse"
}
}
]
}
},
"$defs": {
"termsOfUse": {
"description": "Extension binds the Issuer's Verifiable Accreditation into any issued Verifiable Credential",
"type": "object",
"properties": {
"id": {
"description": "References the Verifiable Credential stored as an attribute of the issuer in the Trusted Issuers Registry (TIR).",
"type": "string",
"format": "uri"
},
"type": {
"description": "Defines the term of use type",
"type": "string",
"const": "IssuanceCertificate"
}
},
"required": ["id", "type"]
}
}
}Installation
# with npm
npm add @europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@0.0.0
# with Yarn
yarn add @europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@0.0.0
# with pnpm
pnpm add @europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@0.0.0Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema";
// you can now use the schema and metadataIn addition, the package exports a TypeScript type corresponding to the schema:
import type { EBSITypeExtensionForUseOfIssuanceCertificate } from "@europeum-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-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.
