@cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema
v1.3.0
Published
EBSI Verifiable ID for a natural person participating in the educational use cases (VCDM 1.1)
Downloads
11
Keywords
Readme
@cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema
EBSI Natural Person Verifiable ID
Schema of an EBSI Verifiable ID for a natural person participating in the educational use cases
The schema is published to the Trusted Schemas Registry with the IDs:
0xf32074e234c64a7f358c54599f2637b71b7d7ba67420878d82ac076700fdc303
(hexadecimal)zHN4myAdVxwu6mZ3GMoCZDGVP8qLX9vEHkmwtmfnE9Dox
(multibase base58btc)
Table of Contents
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EBSI Natural Person Verifiable ID",
"description": "Schema of an EBSI Verifiable ID for a natural person participating in the educational use cases",
"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": {
"description": "Defines an alternative identifier for the person ",
"type": "array",
"items": { "$ref": "#/$defs/identifier" }
},
"familyName": {
"description": "Defines current family name(s) of the credential subject",
"type": "string"
},
"firstName": {
"description": "Defines current first name(s) of the credential subject",
"type": "string"
},
"dateOfBirth": {
"description": "Defines date of birth of the credential subject",
"type": "string",
"format": "date"
},
"personalIdentifier": {
"description": "Defines the unique national identifier of the credential subject (constructed by the sending Member State in accordance with the technical specifications for the purposes of cross-border identification and which is as persistent as possible in time)",
"type": "string"
},
"nameAndFamilyNameAtBirth": {
"description": "Defines the first and the family name(s) of the credential subject at the time of their birth",
"type": "string"
},
"placeOfBirth": {
"description": "Defines the place where the credential subject is born",
"type": "string"
},
"currentAddress": {
"description": "Defines the current address of the credential subject",
"type": "array",
"items": { "type": "string" }
},
"gender": {
"description": "Defines the gender of the credential subject",
"type": "string"
}
},
"required": ["id"]
}
}
}
],
"$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/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema@1.3.0
# with Yarn
yarn add @cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema@1.3.0
# with pnpm
pnpm add @cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema@1.3.0
Usage
The package exports the schema and its metadata as JavaScript objects:
import {
schema,
metadata,
} from "@cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-id-schema";
// you can now use the schema and metadata
In addition, the package exports a TypeScript type corresponding to the schema:
import type { EBSINaturalPersonVerifiableID } from "@cef-ebsi/vcdm1.1-multi-uni-pilot-verifiable-attestation-individual-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.