EBSI Verifiable Presentation (VCDM 1.1)
> EBSI Verifiable Presentation
>
> The schema defines a generic structure for any EBSI-related Verifiable Presentation according to the Verifiable Credentials Data Model v1.1
The schema is published to the Trusted Schemas Registry with the IDs:
- 0x8b2e7ed717679641e0da79a64eb5e9f239520d2d4db2f64cfacce28e49fe6d6e (hexadecimal)
- zANJnsK3Ag35DkSPfNm9MDwRWQh3PfhuE4HHZCEtbsHad (multibase base58btc)
- JSON Schema
- Installation
- Usage
- License
``json`
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EBSI Verifiable Presentation",
"description": "The schema defines a generic structure for any EBSI-related Verifiable Presentation according to the Verifiable Credentials Data Model v1.1",
"type": "object",
"properties": {
"@context": {
"description": "Defines semantic context of the Verifiable Presentation",
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"type": {
"description": "Defines the Verifiable Presentation type",
"type": "array",
"items": {
"type": "string"
}
},
"holder": {
"description": "Defines unique identifier of the party who shares the Verifiable Presentation",
"type": "string"
},
"verifiableCredential": {
"description": "Contains the personal information intended to be shared",
"type": "array",
"items": {
"oneOf": [{ "type": "object" }, { "type": "string" }]
}
},
"proof": {
"description": "Contains information about the proof",
"type": "object",
"properties": {
"type": {
"description": "Defines the proof type",
"type": "string"
},
"proofPurpose": {
"description": "Defines the purpose of the proof",
"type": "string"
},
"created": {
"description": "Defines the date and time, when the proof has been created",
"type": "string",
"format": "date-time"
},
"verificationMethod": {
"description": "Contains information about the verification method / proof mechanisms",
"type": "string"
},
"challenge": {
"description": "Defines a random or pseudo-random value used by some authentication protocols to mitigate replay attacks",
"type": "string"
},
"domain": {
"description": "Defines a string value that specifies the operational domain of a digital proof",
"type": "string",
"format": "hostname"
},
"jws": {
"description": "Defines the proof value in JWS format",
"type": "string"
}
},
"required": [
"type",
"proofPurpose",
"created",
"verificationMethod",
"jws"
]
}
},
"required": ["@context", "type", "holder", "verifiableCredential"]
}
`shwith npm
npm add @cef-ebsi/vcdm1.1-presentation-schema@2.0.0
Usage
The package exports the schema and its metadata as JavaScript objects:
`js
import { schema, metadata } from "@cef-ebsi/vcdm1.1-presentation-schema";// you can now use the schema and metadata
`In addition, the package exports a TypeScript type corresponding to the schema:
`ts
import type { EBSIVerifiablePresentation } from "@cef-ebsi/vcdm1.1-presentation-schema";
``Copyright (C) 2024 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