@cef-ebsi/vcdm1.1-ct-qualification-schema
v1.3.0
Published
EBSI Conformance Testing Qualification Credential (VCDM 1.1)
Downloads
14
Keywords
Readme
@cef-ebsi/vcdm1.1-ct-qualification-schema
EBSI Conformance Testing Qualification Credential
The Credential defines that the Conformance Testing was passed and qualified
The schema is published to the Trusted Schemas Registry with the IDs:
0x79c454d55c8c69191988f5da9451404d1aecc6c7a064b3dc09a62e67b7b207bc
(hexadecimal)z9CKy91QMGggAdwtB6T3CJBNRXWfvpzYbiPBsLDFvt1UP
(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EBSI Conformance Testing Qualification Credential",
"description": "The Credential defines that the Conformance Testing was passed and qualified",
"type": "object",
"allOf": [
{
"$ref": "./node_modules/@cef-ebsi/vcdm1.1-attestation-schema/schema.json"
},
{
"properties": {
"credentialSubject": {
"description": "Defines additional information about the subject",
"type": "object",
"properties": {
"version": {
"description": "Completed conformance testing version number in SemVer",
"type": "string"
}
},
"required": ["version"]
}
},
"required": ["credentialSubject"]
}
]
}
Installation
# with npm
npm add @cef-ebsi/[email protected]
# with Yarn
yarn add @cef-ebsi/[email protected]
# with pnpm
pnpm add @cef-ebsi/[email protected]
Usage
The package exports the schema and its metadata as JavaScript objects:
import { schema, metadata } from "@cef-ebsi/vcdm1.1-ct-qualification-schema";
// you can now use the schema and metadata
In addition, the package exports a TypeScript type corresponding to the schema:
import type { EBSIConformanceTestingQualificationCredential } from "@cef-ebsi/vcdm1.1-ct-qualification-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.