@cef-ebsi/vcdm1.1-alliance-id-schema
v1.0.1
Published
Schema of an EBSI Verifiable University Alliance ID for a natural person participating in the Alliance (VCDM 1.1)
Downloads
2
Keywords
Readme
@cef-ebsi/vcdm1.1-alliance-id-schema
Verifiable AllianceID
Schema of an EBSI Verifiable University Alliance ID for a natural person participating in the Alliance
The schema is published to the Trusted Schemas Registry with the IDs:
0xa7b1794661f4b1532a18aa7f6c2091300fe79533cca782abbd302eb59f6719fc
(hexadecimal)zCHc3ZfYg2871W2WftjLu4QNMQrDzG57oG5pvGoyHcagB
(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Verifiable AllianceID",
"description": "Schema of an EBSI Verifiable University Alliance ID for a natural person participating in the Alliance",
"type": "object",
"allOf": [
{
"$ref": "./node_modules/@cef-ebsi/vcdm1.1-attestation-schema/schema.json"
},
{
"properties": {
"credentialSubject": {
"description": "Defines additional properties on credentialSubject to describe IDs that do not have a substantial level of assurance.",
"type": "object",
"properties": {
"id": {
"description": "Defines a unique identifier of the credential subject",
"type": "string"
},
"identifier": {
"type": "object",
"description": "Defines the identifier for the University Alliance. Format: urn:schac:europeanUniversityAllianceCode:int:euai:<sHO>:<code>. sHO: the schacHomeOrganization of the Alliance that issued the credential, <code> the university alliance code",
"$ref": "#/$defs/identifier"
}
},
"required": ["id", "identifier"]
}
}
}
],
"$defs": {
"identifier": {
"description": "Defines an alternative Identifier object",
"type": "object",
"properties": {
"schemeID": {
"description": "Defines the schema used to define alternative identification",
"type": "string"
},
"value": {
"description": "Define the alternative identification value",
"type": "string"
},
"id": {
"description": "The URI of the identifier",
"type": "string",
"format": "uri"
}
},
"required": ["schemeID", "value"]
}
}
}
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-alliance-id-schema";
// you can now use the schema and metadata
In addition, the package exports a TypeScript type corresponding to the schema:
import type { VerifiableAllianceID } from "@cef-ebsi/vcdm1.1-alliance-id-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.