@cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema
v1.0.2
Published
EBSI type extension for use of IssuanceCertificate
Downloads
3
Keywords
Readme
@cef-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:
0x1d7146f8897aa6cd5c59321ea0756ec61277028e4a8b3c13ec1b310ec47e6495
(hexadecimal)z2yw1Mq2Cq4jN8B2bJ66cGcFEqjrJQUinxHAUjZTkVKjz
(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 @cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@1.0.2
# with Yarn
yarn add @cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@1.0.2
# with pnpm
pnpm add @cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema@1.0.2
Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema";
// you can now use the schema and metadata
In addition, the package exports a TypeScript type corresponding to the schema:
import type { EBSITypeExtensionForUseOfIssuanceCertificate } from "@cef-ebsi/vcdm1.1-type-extensions-terms-of-use-issuance-certificate-schema";
License
Copyright (c) 2019 European Commission Licensed under the EUPL, Version 1.2 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"); You may not use this work except in compliance with the Licence. You may obtain a copy of the Licence at:
Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licence for the specific language governing permissions and limitations under the Licence.