🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@cef-ebsi/vcdm1.1-alliance-id-schema

Package Overview
Dependencies
Maintainers
5
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cef-ebsi/vcdm1.1-alliance-id-schema

Schema of an EBSI Verifiable University Alliance ID for a natural person participating in the Alliance (VCDM 1.1)

latest
npmnpm
Version
2.0.0
Version published
Weekly downloads
3
-72.73%
Maintainers
5
Weekly downloads
 
Created
Source

EBSI Logo

@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:

  • 0x2f03258b687b1a614515268d56af599aacb5652284097dc163c4e24d95f42eff (hexadecimal)
  • z4AWwo2KkphRCzZsqpNeXo7c9cCkV2HXFpGLKZ11XGqJn (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/vcdm1.1-alliance-id-schema@2.0.0

# with Yarn
yarn add @cef-ebsi/vcdm1.1-alliance-id-schema@2.0.0

# with pnpm
pnpm add @cef-ebsi/vcdm1.1-alliance-id-schema@2.0.0

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) 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 https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.

FAQs

Package last updated on 15 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts