Verifiable Credentials Overview v1.1

W3C Group Note Draft

More details about this document
This version:
https://www.w3.org/TR/2026/DNOTE-vc-overview-1.1-20260730/
Latest published version:
https://www.w3.org/TR/vc-overview-1.1/
Latest editor's draft:
https://w3c.github.io/vc-overview/
History:
https://www.w3.org/standards/history/vc-overview-1.1/
Commit history
Editor:
Ivan Herman (W3C)
Authors:
Mahmoud Alkhraishi (Mavennet)
Joe Andrieu (Legendary Requirements)
Greg Bernstein (Invited Expert)
Denken Chen (Ministry of Digital Affairs, Taiwan)
Gabe Cohen (Invited Expert)
Kayode Ezike (Gobekli)
Ivan Herman (W3C)
Isaac Henderson Johnson Jeyakumar (Fraunhofer IAO)
Michael B. Jones (Invited Expert)
Isaac Koh (Infocomm Media Development Authority of Singapore)
Dave Longley (Digital Bazaar)
Wesley Smith (Digital Bazaar)
Manu Sporny (Digital Bazaar)
Patrick St. Louis (Open Security and Identity)
Hendry Poh (Infocomm Media Development Authority of Singapore)
Michael Prorock (Tradeverifyd)
Ted Thibodeau Jr (OpenLink Software)
Elaine Wooton (Invited Expert)
Dmitri Zagidulin (MIT Digital Credentials Consortium)
Feedback:
GitHub w3c/vc-overview (pull requests, new issue, open issues)
public-vc-wg@w3.org with subject line [vc-overview-1.1] … message topic … (archives)

Abstract

Credentials are a part of our daily lives; driver’s licenses are used to assert that we are capable of operating a motor vehicle, university degrees can be used to assert our level of education, government-issued passports enable us to travel between countries, and trade authorities issue certificates containing various informations on a product. The family of W3C Recommendations for Verifiable Credentials, described in this overview document, provides a mechanism to express these sorts of credentials on the Web in a way that is cryptographically secure, privacy respecting, and machine-verifiable.

Status of This Document

This section describes the status of this document at the time of its publication. A list of current W3C publications and the latest revision of this technical report can be found in the W3C standards and drafts index.

This document was published by the Verifiable Credentials Working Group as a Group Note Draft using the Note track.

Group Note Drafts are not endorsed by W3C nor its Members.

This is a draft document and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to cite this document as other than a work in progress.

The W3C Patent Policy does not carry any licensing requirements or commitments on this document.

This document is governed by the 18 August 2025 W3C Process Document.

1. Introduction

This document provides a non-normative, high-level overview for W3C’s Verifiable Credential specifications and serves as a roadmap for the documents that define, describe, and secure these credentials. It is not the goal of this document to be very precise, nor does this overview cover all the details. The intention is to provide users, implementers, or anyone interested in the subject, a general understanding of the concepts and how the various specifications, published by the Verifiable Credentials Working Group, fit together.

2. Ecosystem Overview

The Verifiable Credential specifications rely on an ecosystem consisting of entities playing different “roles”. The main roles are:

Issuer
An entity that creates a Verifiable Credential, consisting of a series of statements related to its subject. An example is a university administration that issues credentials for university degrees or certificates for alumni.
Holder
An entity that possesses one or more Credentials, and that can transmit presentations of those Verifiable Credentials to third parties. An example may be the person who “holds” his/her own educational degrees. Another example may be a digital wallet that contains several Credentials on someone’s behalf.
Verifier
An entity that performs verification on a Verifiable Credential to check the validity, consistency, etc., of a Credential. An example may be an employer’s digital system that checks the validity of a university degree before deciding on the employment of a person.

For a more precise definition of these roles, as well as other roles, see the relevant section in the data model specification.

Diagram showing how credentials flow from issuer to holder, and presentations flow from holder to verifier, where all three parties can use information from a logical verifiable data registry.
Figure 1 The roles and information flows forming the basis for the VC Data Model.

3. High Level View of the Specifications

Figure 2 provides an overview of the main building blocks for Verifiable Credentials, including their (normative) dependencies. For more details, see the subsequent sections in this document.

Diagram illustrating the structure of the Verifiable Credential (VC) specifications, using boxes labeled with references to the specification. Arrows on the diagram connect some of the boxes to represent (normative) dependencies. The box labeled as the VC Data Model is at the top-center of the diagram. Additional component boxes — such as Render Methods for specify preferred ways tp express a VC to the end user; VC Barcodes to express a VC in the form of a barcode; JSON Schema for structural checking; VC Recognized entities for secure the issuer are part of a specific ecosystem; VCALM for APIs for VC Lifecycle Management; Confidence Methods to specify ways to increase confidence for a verifier in a VC; Bitstring Status List for publishing status information; VC FOrgery Defense to publish an indexed list of compact fingerprints; and Controlled Identifiers for verification methods and relationships — are related to the VC Data Model. The box for securing mechanisms contain separate boxes for embedded proofs, on the left, and enveloping proofs, on the right. The box for embedded proofs contains a box labeled as Data Integrity, which depends both on the VC Data Model and on Controlled Identifiers, as well as boxes for the ECDSA, EdDSA, BBS, and Quantum Resistant Cryptosuites, supporting different elliptic curves and signature schemes; all of these depend on Data Integrity. The enveloping proofs box contains a single box labeled as 'JOSE and COSE ... using JWS, SD-JWT, or CBOR'; as with Data Integrity, this depends both on the VC Data Model and on Controlled Identifiers.
Figure 2 Verifiable Credentials Working Group Recommendations (the figure is also available in SVG).

The Verifiable Credentials Data Model v2.0 [vc-data-model] specification, which defines the core concepts that all other specifications depend on, plays a central role. The model is defined in abstract terms, and applications express their specific credentials using a serialization of the data model. The current specifications use a JSON serialization; the community may develop other serializations in the future.

When Verifiable Credentials are serialized in JSON, it is important to trust that the structure of a Credential may be interpreted in a consistent manner by all participants in the verifiable credential ecosystem. The Verifiable Credentials JSON Schema Specification [vc-json-schema] defines how [json-schema] can be used for that purpose.

The Confidence Method v1.0 [vc-confidence-method] specification defines an extensible mechanism that issuers can use; the goal is to increase the confidence of verifiers in the legitimacy of the presentation of a given credential.

The Verifiable Credential Rendering Methods v1.0 [vc-render-method] specification also defines an extensible mechanism for issuers; the goal is to provide preferred mechanisms for the presentation of a credential. These presentations may use images, simple cards in a digital wallet, complex visual presentations, or HTML, CSS, and JavaScript in a secure execution environment.

Credentials can be secured using two different mechanisms: enveloping proofs or embedded proofs. In both cases, a Credential is cryptographically secured by a proof (usually digital signatures). In the enveloping case, the proof wraps around the Credential, whereas embedded proofs are included in the serialization alongside the Credential itself.

A family of enveloping proofs is defined in the Securing Verifiable Credentials using JOSE and COSE [vc-jose-cose] document, relying on technologies defined by the IETF. Other types of enveloping proofs may be specified by the community.

The general structure for embedded proofs is defined in a separate Verifiable Credential Data Integrity 1.0 [vc-data-integrity] specification. The Working Group also specifies instances of this general structure in the form of “cryptosuites”: Data Integrity EdDSA Cryptosuites v1.0 [vc-di-eddsa], Data Integrity ECDSA Cryptosuites v1.0 [vc-di-ecdsa], Data Integrity BBS Cryptosuites v1.0 [vc-di-bbs], and Quantum-Resistant Cryptosuites v1.0 [vc-di-quantum-resistant]. Other cryptosuites may be specified by the community.

The Controlled Identifiers v1.0 [cid] specification defines some common terms (e.g., verification relationships and methods) that are used not only by other Verifiable Credential specifications, but also other Recommendations such as Decentralized Identifiers (DIDs) v1.0 [did-core].

The Verifiable Credential Barcodes v1.0 [vc-barcodes] specification defines an efficient way to represent a Verifiable Credential in the form of an optical barcode.

The Bitstring Status List v1.0 [vc-bitstring-status-list] specification defines a privacy-preserving, space-efficient, and high-performance mechanism for publishing the status of a specific Verifiable Credential, such as its suspension or revocation, through the use of bitstrings.

The Verifiable Credential Forgery Defense v1.0 [vc-forgery-defense] specification defines a mechanism for issuers of Verifiable Credentials to publish indexed lists of compact cryptographic witnesses. This is an extra layer of security for Credentials that are already issued, but whose signature keys may potentially be compromised, e.g., through future advances in quantum computing.

The Verifiable Credential ecosystem relies on the ability of verifiers to determine whether a particular issuer is recognized to perform a particular action. The Recognized Entities v1.0 [vc-recognized-entities] specification defines an interoperable mechanism to express and communicate the recognition of entities that perform known actions like issuing or verifying specific types of credential. For example, that an issuer is recognized to assess conformance to a specific standard, that an organization is authorized to issue a specific type of federated identifier, or that a university is recognized as being able to issue under graduate degrees.

The VCALM v1.0 [vcalm] specification defines HTTP APIs among the active entities corresponding to the main “roles” in the Verifiable Credential model (i.e., issuer, holder, and verifier, see also 2. Ecosystem Overview). The specification provides a reference model for components within these roles, with the corresponding APIs among those components.

Note

In 2025, a number of documents were published as W3C Recommendations, which is the W3C terminology for Web Standards. Although also published at that time, two documents, namely the Verifiable Credentials JSON Schema Specification and the Data Integrity BBS Cryptosuites v1.0 specifications, were not published as Recommendation at the time. Though technically complete, they are still Candidate Recommendations. The reasons are different. The former has not yet been implemented by at least two mutually independent implementations (which is the requirement to be published as a standard) whereas the latter has to wait until the underlying cryptographic technique (i.e., The BBS Signature Scheme) is finalized by the IETF. It is expected that these two documents will be published as Web Standards eventually.

A revision cycle for some of these specifications has started in 2026. Some documents have been re-issued as Working Drafts (marked with a higher minor version number). But, more importantly and a number of new specifications have been added to the family of documents, to be published, eventually, as Recommendations as well.

The official publication list of the Working Group shows the exact status of all the documents.

4. The Verifiable Credentials Data Model

4.1 Claims, Properties

A core concept is “claims”: statements made about various entities, referred to as “subjects”. Subjects may be a person (e.g., the person holding a university degree), an animal, an abstract concept, another Credential, etc. Claims may also be on the enclosing Credential itself, such as issuance date, validity periods, etc. (Such claims are also loosely referred to as “credential metadata”.)

Claims are expressed using “properties” referring to “values”. Values may be literals, but may also be other entities referred to, usually, by a [URL]. In that case, that entity may become the subject of another claim; these claims, together, form a graph of claims that represents a Credential. (See Figure 6 for an example of such a graph represented graphically. For more complex examples, refer to the Verifiable Credentials Data Model v2.0 specification itself.)

Diagram showing an ellipse on the left labeled as 'Subject', connected by an arrow from left to right labeled as 'Property', to a box on the right labeled as 'Value'.
Figure 3 The basic structure of a claim with (in this case) a literal value.

The Verifiable Credentials Data Model v2.0 document specifies a number of standard properties. These include, for example, credentialSubject, type, issuer, or validFrom. Developers may define their own properties to express specific types of Credentials, like a driving license, a university degree, a marriage certificate, or a Digital Product Passport.

4.2 Core Concepts

4.2.1 Credentials

A Credential is a set of one or more claims made by the same entity. Credentials might also include an identifier and metadata to describe properties of the Credential, such as a reference to the issuer, the validity date, a representative image, the revocation mechanism, and so on. A Verifiable Credential is a set of claims and metadata (i.e., a Credential) that also includes verification mechanisms that cryptographically prove who issued it, ensures that the data has not been tampered with, etc.

For a more detailed description of abstract Verifiable Credentials, with examples, see the relevant section in the data model specification.

Diagram showing a lozenge labeled as 'Verifiable Credential' containing three vertically stacked lozenges, labeled as 'Credential Metadata', 'Claim(s)', and 'Proof(s)'.
Figure 4 Basic components of a Verifiable Credential.

4.2.2 Presentations

Enhancing privacy is a key design feature of Verifiable Credentials. Therefore, it is important for entities using this technology to be able to express only the portions of their persona that are appropriate for a given situation. The expression of a subset of one's persona is called a Verifiable Presentation. Examples of different personas include a person's professional persona, their online gaming persona, their family persona, or an incognito persona.

A Verifiable Presentation is created by a holder, can express data stemming from multiple Verifiable Credentials, and can contain additional metadata in forms of additional claims. They are used to present claims to a verifier. It is also possible to present Verifiable Credential directly.

A Verifiable Presentation is usually short-lived, it is not meant to be stored for a longer period.

For a more detailed description of abstract Verifiable Presentations, with examples, see the relevant section in the data model specification.

Diagram showing a lozenge labeled as 'Verifiable Presentation' containing three vertically stacked lozenges, labeled as 'Presentation Metadata', 'Verifiable Credential(s)', and 'Proof(s)'.
Figure 5 Basic components of a verifiable presentation.

4.3 JSON Serialization

In the [vc-data-model] specification, as well as in the other documents, Verifiable Credentials and Presentations are mostly expressed in JSON [rfc7519], more specifically JSON-LD 1.1 [json-ld11]. In this serialization, properties of claims are represented as JSON names, and values as JSON literals or objects. Subjects of claims are either explicitly identified by an id property, or implicitly by appearing as an object of another claim. JSON-LD is useful because it enables the expression of the graph-based data model on which verifiable credentials are based, it has a machine-readable semantics, and is also useful when extending the data model. (See the relevant section in the [vc-data-model] specification.)

Standard properties defined by the [vc-data-model] form a distinct set of JSON names, referred to as a (standard) vocabulary. An important characteristic of Verifiable Credentials in JSON-LD is that it favors a decentralized and permissionless approach to extend to a new application area through application-specific vocabularies, distributed on the Web. Anyone can “publish” such a vocabulary, following some rules described in the extensibility section of the specification.

The following JSON-LD code is an example for a simple Credential. It states that the person named “Pat”, identified by https://www.example.org/persons/pat, is an alumni of the Example University (identified by did:example:c276e12ec21ebfeb1f712ebc6f1). The Credential is valid from the 1st of January 2010, and is issued by an entity identified by did:example:university.example:CSSchool. Most of the properties in the Credential are from the standard Verifiable Credentials vocabulary (identified by https://www.w3.org/ns/credentials/v2), but some terms (like alumniOf or AlumniCredential) are added by the application-specific vocabulary referred to by https://www.w3.org/ns/credentials/examples/v2.

Example 1: A simple Alumni Credential
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    }
  }
}

Figure 6 shows the same Credential, but represented as a graph of claims, as described in 4.1 Claims, Properties.

Diagram showing an example of a Verifiable Credential. At top, there is an ellipse labeled 'https://university.example/Credential123 (Type: VerifiableCredential, ExampleAlumniCredential)'. This ellipse has two arrows going down. One arrow is nearer the right side of the ellipse, is labeled as 'validFrom', angles to the right, and terminates at a box labeled as '2010-01-01T00:00:00Z'. The second arrow is at the middle of the ellipse, is labeled as 'credentialSubject', and ends at an ellipse labeled as 'https://www.example.org/persons/pat'. This ellipse has two more arrows going down. One arrow is nearer the right side of the ellipse, is labeled as 'name', and angles to the right, terminating at a box labeled as 'Pat'. The second arrow is nearer the left side of the ellipse, labeled as 'alumniOf', and ends at another ellipse labeled as 'did:example:c276e12ec21ebfeb1f712ebc6f1'. This ellipse has a final arrow going down, which is labeled as 'name' and ends at a final box labeled as 'Example University'.
Figure 6 The Credential in Example 1 represented as a collection of claims.
Note

The Alumni Credential in Example 1 is used as a starting point throughout this document to show how to apply ßadditional features defined by the various specifications.

The Credential in Example 1, issued by Example University, is stored by a holder (who may be a person, a digital wallet, or any other entity). On request, the holder may “present” the Credential to a verifier, encapsulated in a Presentation. This is how the Credential looks like in the JSON-LD serialization:

Example 2: Presenting the credential
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "type": "VerifiablePresentation",
  "id": "urn:uuid:313801ba-24b7-11ee-be02-ff560265cf9b",
  "holder": "did:example:12345678",
  "verifiableCredential": [{
    "@context": [
      "https://www.w3.org/ns/credentials/v2",
      "https://www.w3.org/ns/credentials/examples/v2"
    ],
    "id": "https://university.example/Credential123",
    "type": ["VerifiableCredential", "ExampleAlumniCredential"],
    "issuer": "did:example:university.example:CSSchool",
    "validFrom": "2010-01-01T00:00:00Z",
    "validUntil": "2020-12-31T00:00:00Z",
    "credentialSubject": {
      "id": "https://www.example.org/persons/pat",
      "name": "Pat",
      "alumniOf": {
        "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
        "name": "Example University"
      }
    }
  }]
}

Note that the holder could have presented several Credentials within the same presentation, or create a new Credential by either combining it with others or removing some claims as irrelevant for the specific context.

4.4 Extensions

This section describes additional (and optional) features that an issuer may choose to use to extend the core Credential.

4.4.1 Confidence Methods

The Confidence Method v1.0 [vc-confidence-method] specification defines a mechanism that issuers can use to increase the confidence of verifiers in the legitimacy of the presentation of a given credential. An analogy is checking a driving license: when the police officer (the “verifier”) gets hold of the license, they would first compare the photograph on the physical license to compare it with the face of the driver. This raises the confidence of the police officer that the driver is indeed the “subject” of the license (the “credential”).

The specification adds the concept of a Confidence Method to the core model. It defines mechanisms that can be used by the verifier to increase its confidence that a subject of the VC is also the subject of another interaction. For example, the issuer might provide a public key of the subject; the verifier could use a proof-of-use protocol to establish that the current user indeed holds the corresponding secret key by signing cryptographic challenges (see Example 3). A more complex verification method might be based on biometrics, like embedding raw biometric data (photograph, audio recordings, fingerprint data), or biometric vectors, i.e., compact mathematical representations produced by a specific model that can be used for matching. Some of these methods are defined in the specification, but specific communities may extend the model with other, proprietary approaches.

Note

The list of methods in the specification is still to be finalized.

Example 3: The Alumni Credential extended by a confidence method, relying on a public EdDSA key of the subject.
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  }
}

4.4.2 Rendering Methods

The issuer of a credential may have preferred ways to express a verifiable credential to an observer. For example, an issuer of the university alumni badge might want to include rich imagery of their university logo and specific placement of the alumni information in specific areas of the badge. The Verifiable Credential Rendering Methods v1.0 [vc-render-method] specification defines an extensible mechanism that issuers may use to provide these preferred mechanisms for the presentation of a credential. These presentations may use images, simple cards for a digital wallet, complex visual presentations, or HTML, CSS, and JavaScript in a secure execution environment.

The specification adds the renderMethod property to the data model for the issuer to use. The value of that property is an object, whose claims provide the necessary parameters for a specific render method. The document also includes some specific categories of render methods that can be used. These include:

  • “Static”: the issuer provides a static resource in the credential that should be directly consumed/displayed by the holder.
  • “Data”: the holder transforms credential to key/value data entries and displays it. The transformation’s parameters include the possibility to restrict the credential's statements to be displayed.
  • “HTML”: a generic, HTML+JavaScript render suite, that performs the final rendering of the credential via a sandboxed HTML iframe. The HTML snippet is provided by the issuer. This approach is well adapted to Web browsers, but also to mobile applications using WebView, and makes use of the rich possibilities offered by Web APIs.

Communities may define their own render methods.

Note

Example 4 adds an HTML-based render method to our alumni example. Note the usage of the digestMultibase property which adds an extra security to the choice of the HTML snippet. The snippet itself can be retrieved using the university’s dedicated URL.

Example 4: The Alumni Credential, to be preferably rendered with an HTML based render method.
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  }
}

4.4.3 Checking with JSON Schemas

A significant part of the integrity of a Verifiable Credential comes from the ability to structure its contents so that all three parties — issuer, holder, verifier — may have a consistent mechanism of trust in interpreting the data that they are provided with. One way of doing that is to use [json-schema] to check the structural validity of the Credential. The Verifiable Credentials JSON Schema Specification [vc-json-schema] specification adds standard properties to express the association of a Credential with a JSON Schema.

Consider the following example:

Example 5: The Alumni Credential with a reference to a JSON schema
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}

When dereferenced, the URL https://university.example/Credential-schema.json should return a JSON Schema, for example:

Example 6: Skeleton of a JSON schema for the Alumni Credential
{
  "$id": "https://university.example/schemas/credential.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExampleAlumniCredential",
  "description": "Alumni Credential using JsonSchema",
  "type": "object",
  "properties": {
    "renderMethod": {
      "type": "object",
      "…"
    },
    "credentialSubject": {
      "type": "object",
      "properties": {
        "alumniOf": {
          "type": "string",
          "format": "url"
        },
        "confidenceMethod": {
          "type": "object",
          "…"
        }
      },
      "required": [
        "alumniOf"
      ]
    }
  }
}

Using this JSON Schema, a verifier can check whether the Credential is structurally valid or not.

For security reasons one may want to go a step further: check/verify the JSON Schema itself to see if, for example, it has been tampered with. This can be done by referring to the JSON Schema indirectly through a separate Verifiable Credential. The reference to such a Verifiable Credential looks very much like Example 5 except for the value of the type:

Example 7: A Alumni Credential with a JSON schema credential
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema-credential",
    "type": "JsonSchemaCredential"
  }
}

In this case, when dereferenced, the URL https://university.example/Credential-schema-credential should return a Verifiable Credential, whose credentialSubject property refers to the required JSON Schema (i.e., https://university.example/Credential-schema.json). See the example in the Verifiable Credentials JSON Schema Specification specification for an example and for further details.

4.5 Example: the Alumni Credential

For reference, Example 8 represents the full Alumni Credential, as constructed so far.

Example 8: A simple alumni credential with a JSON schema
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}

5. Securing Credentials

5.1 Enveloping Proofs

Enveloping proofs of Credentials, defined by this Working Group, are based on JSON Object Signing and Encryption (JOSE), CBOR Object Signing and Encryption (COSE) [rfc9052], or Selective Disclosure for JWTs [rfc9901]. These are all IETF specifications, or groups of specifications (like JOSE, that refers to JWT [rfc7519], JWS [rfc7515], or JWK [rfc7517]). The Securing Verifiable Credentials using JOSE and COSE [vc-jose-cose] Recommendation defines a “bridge” between these and the Verifiable Credentials Data Model v2.0, specifying the suitable header claims, media types, etc.

In the case of JOSE, the Credential is the “payload” (to use the IETF terminology). This is preceded by a suitable header whose details are specified by the relevant section of the [vc-jose-cose] specification. These are encoded, concatenated, and signed, to be transferred in a compact form by one entity to another (e.g., sent by the holder to the verifier). All the intricate details on signatures, encryption keys, etc., are defined by the IETF specifications; see Example 9 for a specific case.

The usage of COSE [rfc9052] is similar to JOSE, except that all structures are represented in CBOR [rfc8949]. From the Credentials point of view, however, the structure is similar insofar as the Credential (or the Presentation) is again the payload for COSE. The use of CBOR means that the final representation of the Verifiable Credential (or Presentation) can have a reduced footprint which can be, for example, shown in a QR Code.

The [rfc9901] specification is a variant of JOSE, which allows for the selective disclosure of individual claims. Claims can be selectively hidden or revealed to the verifier, but all claims are cryptographically protected against modification. This approach is obviously more complicated than the JOSE case but, from the Credentials point of view, the structure is again similar. The original Credential is the payload for SD-JWT; and it is the holder’s responsibility to use SD-JWT when presenting the Credential to a verifier using selective disclosure.

Issue 1

5.1.1 Example: the Alumni Credential Secured with JOSE and COSE

Example 9 shows the Credential example shown in Example 1, enriched with a reference to a JSON Schema in Example 5. It is secured by two different enveloping proofs, namely JOSE and COSE.

Example 9: The Alumni Credential in JOSE and COSE
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}
Protected Headers
{
  "kid": "ExHkBMW9fmbkvV266mRpuP2sUY_N_EWIN1lapUzO8ro",
  "alg": "ES256"
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}
application/vc+jwt
eyJraWQiOiJFeEhrQk1XOWZtYmt2VjI2Nm1ScHVQMnNVWV9OX0VXSU4xbGFwVXpPOHJvIiwiYWxnIjoiRVMyNTYifQ .eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvbnMvY3JlZGVudGlhbHMvdjIiLCJodHRwczovL3d3dy53My5vcmcvbnMvY3JlZGVudGlhbHMvZXhhbXBsZXMvdjIiXSwiaWQiOiJodHRwczovL3VuaXZlcnNpdHkuZXhhbXBsZS9DcmVkZW50aWFsMTIzIiwidHlwZSI6WyJWZXJpZmlhYmxlQ3JlZGVudGlhbCIsIkV4YW1wbGVBbHVtbmlDcmVkZW50aWFsIl0sImlzc3VlciI6ImRpZDpleGFtcGxlOnVuaXZlcnNpdHkuZXhhbXBsZTpDU1NjaG9vbCIsInZhbGlkRnJvbSI6IjIwMTAtMDEtMDFUMDA6MDA6MDBaIiwicmVuZGVyTWV0aG9kIjp7InR5cGUiOiJUZW1wbGF0ZVJlbmRlcmVyTWV0aG9kIiwicmVuZGVyU3VpdGUiOiJodG1sIiwidGVtcGxhdGUiOnsiaWQiOiJodHRwczovL3VuaXZlcnNpdHkuZXhhbXBsZS9yZW5kZXItbWV0aG9kcy9hbHVtbmljcmVkZW50aWFsLmh0bWwiLCJtZWRpYVR5cGUiOiJ0ZXh0L2h0bWwiLCJkaWdlc3RNdWx0aWJhc2UiOiJ6UW1lcldDODVXZzZ3Rmw5em5GQ3dZeEFwRzI3MGlFdTVoNkpxV0FQZGh5eHoyZFIifX0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImlkIjoiaHR0cHM6Ly93d3cuZXhhbXBsZS5vcmcvcGVyc29ucy9wYXQiLCJuYW1lIjoiUGF0IiwiYWx1bW5pT2YiOnsiaWQiOiJkaWQ6ZXhhbXBsZTpjMjc2ZTEyZWMyMWViZmViMWY3MTJlYmM2ZjEiLCJuYW1lIjoiRXhhbXBsZSBVbml2ZXJzaXR5In0sImNvbmZpZGVuY2VNZXRob2QiOnsidHlwZSI6Ik11bHRpa2V5IiwicHVibGljS2V5TXVsdGliYXNlIjoiejZNa2Y1ckdNb2F0clNqMWY0Q3l2dUhCZVhKRUxlOVJQZHpvMlBLR05DS1Z0WnhQIn19LCJjcmVkZW50aWFsU2NoZW1hIjp7ImlkIjoiaHR0cHM6Ly91bml2ZXJzaXR5LmV4YW1wbGUvQ3JlZGVudGlhbC1zY2hlbWEuanNvbiIsInR5cGUiOiJKc29uU2NoZW1hIn19 .n37CeLEo6cDsvvX67V5mhnibxQ5ColGUMzg1cMrQVPRYCsC2opk22NzGku-IXA-g9njMbJXjHYnVdBEvMwjw5w
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}
application/vc+cose
d28443a10128a05903937b2240636f6e74657874223a5b2268747470733a2f2f7777772e77332e6f72672f6e732f63726564656e7469616c732f7632222c2268747470733a2f2f7777772e77332e6f72672f6e732f63726564656e7469616c732f6578616d706c65732f7632225d2c226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f43726564656e7469616c313233222c2274797065223a5b2256657269666961626c6543726564656e7469616c222c224578616d706c65416c756d6e6943726564656e7469616c225d2c22697373756572223a226469643a6578616d706c653a756e69766572736974792e6578616d706c653a43535363686f6f6c222c2276616c696446726f6d223a22323031302d30312d30315430303a30303a30305a222c2272656e6465724d6574686f64223a7b2274797065223a2254656d706c61746552656e64657265724d6574686f64222c2272656e6465725375697465223a2268746d6c222c2274656d706c617465223a7b226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f72656e6465722d6d6574686f64732f616c756d6e6963726564656e7469616c2e68746d6c222c226d6564696154797065223a22746578742f68746d6c222c226469676573744d756c746962617365223a227a516d65725743383557673677466c397a6e46437759784170473237306945753568364a71574150646879787a326452227d7d2c2263726564656e7469616c5375626a656374223a7b226964223a2268747470733a2f2f7777772e6578616d706c652e6f72672f706572736f6e732f706174222c226e616d65223a22506174222c22616c756d6e694f66223a7b226964223a226469643a6578616d706c653a633237366531326563323165626665623166373132656263366631222c226e616d65223a224578616d706c6520556e6976657273697479227d2c22636f6e666964656e63654d6574686f64223a7b2274797065223a224d756c74696b6579222c227075626c69634b65794d756c746962617365223a227a364d6b663572474d6f617472536a31663443797675484265584a454c65395250647a6f32504b474e434b56745a7850227d7d2c2263726564656e7469616c536368656d61223a7b226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f43726564656e7469616c2d736368656d612e6a736f6e222c2274797065223a224a736f6e536368656d61227d7d584099ce815ff13a6413a0de23189e2c594c6fec01eb3700eff4197508cb5ba62ea7344fcef1fcf7ec46f5ee7e7f6334f5b291ced9dc2a2ba8a9a43e7736f3c29b43

5.2 Embedded Proofs

5.2.1 Creation of Proofs in Data Integrity

The operation of Data Integrity is conceptually simple. To create a cryptographic proof, the following steps are performed: 1) Transformation, 2) Hashing, and 3) Proof Generation.

Simple flow diagram, with steps from left to right, labeled as 'Data', 'Transform Data', 'Hash Data', 'Generate Proof', and 'Data with Proof'.
Figure 7 View of the proof generation steps.
  1. Transformation is a process described by a transformation algorithm that takes input data and prepares it for the hashing process. In the case of data serialized in JSON this transformation includes the removal of all the artifacts that do not influence the semantics of the data, such as spaces, new lines, the order of JSON names, etc. (a step usually referred to as canonicalization). In some cases the transformation may be more involved.
  2. Hashing is a process described by a hashing algorithm that calculates an numerical identifier for the transformed data using a cryptographic hash function. Typically, the size of the resulting hash is smaller than the data, and it is suitable for complex cryptographic functions like digital signatures.
  3. Proof Generation is a process described by a proof method that calculates a value that protects the integrity of the input data from modification or otherwise proves a certain desired threshold of trust. A typical example is the application of a cryptographic signature using asymmetric keys, generating the signature of the data using a private key.

Verification of a proof involves repeating the same transformation and hashing steps on the verifier's side and, depending on the proof method, validating the newly calculated hash value with the proof associated with the data. In the case of a digital signature, this means verifying, using the cryptographic algorithms associated with the asymmetric keys, that the proof value indeed signs the newly calculated hash.

5.2.2 Data Integrity of Credentials

The Verifiable Credential Data Integrity 1.0 [vc-data-integrity] specification starts with the general structure and defines a set of standard properties describing the details of the proof generation process. The specific details (i.e., the transformation, hash, and/or proof method algorithms) are defined by separate Cryptographic Suites (or cryptosuites, for short). The Working Group has defined a number of such cryptosuites, see 5.2.3 Cryptosuites below.

The core property, in the general structure, is called proof. This property embeds a claim in the Credential, referring to a separate collection of claims (referred to as a Proof Graph) detailing all the claims about the proof itself:

Example 10: Skeleton of an embedded proof added to a credential.
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "proof": {
    "type": "DataIntegrityProof",
    …
    // All the details about the proof
    …
    "proofValue": "zQeVb…Wx"
  }
}

Note the proofValue property, whose object is the result of the proof generation process. (The proof value is for illustrative purposes only, and does not reflect the result of real cryptographic calculations.)

The definition of proof introduces a number of additional properties. Some of these are metadata properties on the proof itself, like created, expires, or domain. Others provide the necessary details on the proof generation process itself, like cryptosuite, nonce (if needed), or verificationMethod that usually refers to cryptographic keys. The exact format of the public keys, when used for Credentials, is defined in the [cid-1.0] specification, and is based on either the JWK [rfc7517] format or a Multibase encoding of the keys, called Multikey. Details of the key values are defined by other communities (IETF, cryptography groups, etc.) and are dependent on the specific cryptographic functions they operate with.

It is possible to embed several proofs for the same Credential. These may be a set of independent proofs (based, for example, on different cryptosuites, to accommodate to the specificities of different verifiers), but may also be a chain of proofs that must be evaluated in a given order.

A proof may also specify its purpose via the proofPurpose property: different proofs may be provided for authentication, for assertion, or for key agreement protocols. These details are also defined in the [cid-1.0] specification. The verifier is supposed to choose the right proof depending on the purpose of its own operations, which is yet another possible reason why the holder or the issuer may provide several proofs for the same Credential.

5.2.3 Cryptosuites

Editor's note

The Working Group has published several cryptosuite documents: Data Integrity EdDSA Cryptosuites v1.0 [vc-di-eddsa], Data Integrity ECDSA Cryptosuites v1.0 [vc-di-ecdsa], Data Integrity BBS Cryptosuites v1.0 [vc-di-bbs], and Quantum-Resistant Cryptosuites v1.0 [vc-di-quantum-resistant]. As their name suggests, the documents rely on existing cryptographic signature schemes: the Edwards-Curve Digital Signature Algorithm (EdDSA) specification [rfc8032], the Elliptic Curve Digital Signature Algorithm (ECDSA) specification [fips-186-5], the BBS Signature Scheme [cfrg-bbs-signature], and a collection of quantum resistant schemes, namely the Module-Lattice-Based Digital Signature Standard (ML-DSA) [fips-204], the Stateless Hash-Based Digital Signature Standard (SHL-DSA) [fips-205], the FAst Fourier Lattice-based COmpact signatures over NTRU [FALCON], or SQISign [SQIsign].

Table 1 provides an overall view of the cryptosuites defined by the Recommendations. They all implement the general pipeline of proof generation as described in section 4.2.1. One axis of differentiation is the data transformation function, i.e., the canonicalization of the JSON-LD serialization: cryptosuites whose name include the term rdfc use the RDF Dataset Canonicalization (RDFC-1.0) [rdf-canon], while the term jcs refers to the usage of the JSON Canonicalization (JCS) [rfc8785] instead. The other axis is whether the cryptosuite provides selective disclosure, which is the case for BBS and all other suites whose name include the term sd (all selective disclosure schemes use RDFC). The third axis is whether the cryptographic signature algorithm is quantum resistant or not. Finally, the ecdsa-xi-2023 suite is a variant of ecdsa-rdfc-2019, which allows the inclusion of additional, external data to be “added” to the canonicalized JSON data before signature.

Table 1 Data integrity cryptosuites.
Cryptosuite Identifier Canonicalization Selective disclosure? Quantum resistant?
EdDSA eddsa-rdfc-2022 RDFC no no
eddsa-jcd-2022 JCS no no
ECDSA ecdsa-rdfc-2019 RDFC no no
ecdsa-jcd-2019 JCS no no
ecdsa-sd-2019 RDFC yes no
ecdsa-xi-2023 RDFC no no
BBS bbs-2023 RDFC yes no
ML-DSA-44 mldsa44-rdfc-2024 RDFC no yes
mldsa44-jcs-2024 JCS no yes
mldsa44-sd-2024 RDFC yes yes
SLH-DSA-SHA2-128s slhdsa128-rdfc-2024 RDFC no yes
slhdsa128-jcs-2024 JCS no yes
slhdsa128-sd-2024 RDFC yes yes
FALCON-512 falcon512-rdfc-2024 RDFC no yes
falcon512-jcs-2024 JCS no yes
falcon512-sd-2024 RDFC yes yes
SQIsign-I sqisign1-rdfc-2024 RDFC no yes
sqisign1-jcs-2024 JCS no yes
Note

A common characteristic of all these cryptosuites is that keys must always be encoded using the Multikey encoding. For the ECDSA case the keys may also carry the choice of the hash function to be used by the proof generation algorithm. This provides yet another differentiation axis among cryptosuites.

Note

Applications may define their own cryptosuites by applying different transformation and/or cryptographic signature schemes in similar patterns. For example, it would be possible to define a cryptosuite using the SM2 algorithm [rfc9563] similarly to EdDSA.

5.2.3.1 Full Disclosure Schemes

The full disclosue cryptosuites (i.e., the ones whose name contain the rdfc or jcs terms) follow a simple version of the proof generation pipeline as described in §5.2.1 Creation of Proofs in Data Integrity: the Credential is canonicalized (using either JCS or RDFC-1.0) and the result is hashed (using the hash functions as defined by the signature key). The calculation of the hash values depend on the canonicalization method: in the JCS case the canonical JSON data is hashed directly, whereas in the RDFC-1.0 case the individual canonicalized claims are first sorted and then concatenated before being hashed.

There is an extra twist before signing the hash values: the same pipeline is also used on a set of claims called proof options, i.e., all the claims of the proof graph except proofValue. This set of claims is also canonicalized and hashed, following the same process as for the Credential itself, yielding a second hash value. It is the concatenation of these two values that is signed by EdDSA, ECDSA, or one of the quantum resistant schemes, respectively, producing the value for the proofValue property. By doing so, the various proof metadata, as well as the public key reference itself, are also signed and become verifiable.

5.2.3.2 Selective Disclosure Schemes

The bbs-2023 cryptosuite, and the ones marked with sd in their names, provide selective disclosures of individual claims. The fundamental idea of selective disclosure is that the Verifiable Credential is converted into a flat list of individual claims by the holder; the mandatory claims are hashed and signed together, and the selectively disclosable ones are signed separately before forwarding the information to the verifier.

In all cases, the process separates the base proof (calculated by the issuer for the holder), and the derived proof (which is typically calculated by the holder when selectively presenting credential claims to the verifier).

To calculate the base proof, the Credential is supplemented with extra information that separates the mandatory and non-mandatory claims. Using that information, the issuer’s transformation step in §5.2.1 Creation of Proofs in Data Integrity produces a data structure containing the hash of the proof options (much like in the case of the full disclosure schemes) and of the set of mandatory claims, plus the identification of mandatory claims. Some elements of this data structure are then signed, the resulting structure is converted into CBOR, and encoded to provide a multibase-encoded proofValue.

The derived proof is generated by the holder upon a request which contains JSON pointers [rfc6901] identifying the claims to be disclosed. To answer the request the information in the proofValue is used to create a reveal document, i.e., a new Credential containing the mandatory claims and the requested non-mandatory claims. Finally, the holder generates a derived proof for this reveal document, which is sent to the verifier.

The verifier should be able to test the proof of the reveal document without having access to the original data and its (base) proof. Each non-mandatory claim is signed separately by the issuer using a common, ephemeral secret key, whose public counterpart is part of the both the base and derived proof values. That can be used to check the disclosed non-mandatory claims. The bbs-2023 cryptosuite relies on the cryptographic properties of the BBS scheme itself, which support the creation of proofs for the verification of selectively disclosed data. This is based on the mathematical nature of the BBS scheme: the BBS signature of all the claims (generated by the issuer and part of the base proof) can be reused by the holder to generate a BBS Proof of the subset of the claims (which is part of the derived proof). The BBS specific verification step ensures the required trust.

Note
Issue 2
5.2.3.3 Quantum Resistance

Publication of quantum-resistant cryptosuites is especially timely, in view of some recent research results on quantum vulnerabilities. That study led experts to consider that there exists a small but meaningful probability that elliptic curve keys could be broken by the early 2030s. As a result, organizations have already started to convert their authentication services to use, eventually, quantum resistant cryptographic algorithms, with deadlines as early as 2029.

For Verifiable Credentials this means that ECDSA or EdDSA based signatures may become vulnerable. The collection of quantum resistant cryptosuites provide alternative digital signature schemes, using the best stable algorithms known today.

Note

5.2.4 Example: the Alumni Credential Secured with EdDSA and ECDSA

Example 11 shows the Alumni Credential example, shown in Example 1 and enriched with reference to JSON Schema, and Rendering/Confidence Methods. It is secured by two different embedded proofs, using the ecdsa-rdfc-2019 and eddsa-rdfc-2022 cryptosuites respectively.

Example 11: Embedded EdDSA and ECDSA proofs added to the Alumni Credential
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  }
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  },
  "proof": {
    "type": "DataIntegrityProof",
    "created": "2026-07-23T12:41:59Z",
    "verificationMethod": "did:key:zDnaeT8PxR2GQNzhJRNNDkdUQyyNxWZ7Frqv3qd6nnBhePLGi",
    "cryptosuite": "ecdsa-rdfc-2019",
    "proofPurpose": "assertionMethod",
    "proofValue": "z9efjragtXB81zPDmMQEns5tFXzGAgLCcKf9iFNNvFBQmELrmcmEvsGfVyCs1QowqcfN7Uqy3D756AMHS2Y5hdFi"
  }
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential-schema.json",
    "type": "JsonSchema"
  },
  "proof": {
    "type": "DataIntegrityProof",
    "created": "2026-07-23T12:41:59Z",
    "verificationMethod": "did:key:z6MkgGfhtiJggFLBM8fNQtqPp5z7F58QnBGKDCX6rf7rQZ9j",
    "cryptosuite": "eddsa-rdfc-2022",
    "proofPurpose": "assertionMethod",
    "proofValue": "z5nihvszkdf7Ek3etVhGiyqrTts6bALYP9295XNcrsvGrj54J2aZA9RPRSAXsiCDkTSnW1A7Agm9NkPQ7zHJcqw3r"
  }
}

When dereferenced, the URL value of the verificationMethod property should return a public key in Multikey format. For example:

Example 12: An ECDSA public key
{
  "@context": [
    "https://www.w3.org/ns/did/v1",
    "https://w3id.org/security/multikey/v1"
  ],
  "id": "did:example:university.example:CSSchool#ecdsa-public-key",
  "type": "Multikey",
  "controller": "did:example:university.example:CSSchool",
  "publicKeyMultibase": "z42twTcNeSYcnqg1FLuSFs2bsGH3ZqbRHFmvS9XMsYhjxvHN"
}

Note however that the value of the verificationMethod property may have been the public key itself, instead of a reference to a separate resource containing the key.

6. Verifiable Credential Deployment

6.1 Barcodes

Verifiable Credentials can be expressed through different media, such as simple text, a PDF file, or an image. An important presentation format is the usage optical barcodes, like QR codes, that often appear on identity cards or driving licenses. A simple approach is to convert the JSON serialization of the Credential into CBOR [rfc8949], and then generate a QR Codes from that CBOR representation. This can be done by a number of off-the-shelf tools.

However,this approach has a major drawback for even moderately sized Verifiable Credentials: the result of the direct CBOR conversion may create a QR Code that is too large for the available space, which has a severe size limitation. To solve this problem, the Verifiable Credential Barcodes v1.0 [vc-barcodes] specification takes a slightly different approach. Instead of using a generic CBOR conversion, it relies on the CBOR-LD [cbor-ld] representation of the credential. CBOR-LD is a CBOR encoding tailored for JSON-LD: it includes the possibility for a semantic compression of the data, targeted at a particular application vocabulary. It is possible to achieve compression ratios in excess of 60% better than general compression schemes, which makes it possible to represent Verifiable Credentials for, say, driving licenses, birth certificate,s and conformity certificates.

A picture of the front of a birth certificate containing information such as the newborn's name, parent's names, information about the hospital, attendees, and person responsible for the registration.
Figure 8 A birth certificate with the textual and QR Code representation of the same Credential; the QR Code also includes the Credential proof.

Any credential can be represented in a barcode yielding, for example, a birth cerfiticate like on Figure 8. However, in practical applications, the situation may be a bit more complex. Consider the back side of a fictious employment authorization card on Figure 9:

Picture of the back of a employment authorization document issued by the state of Utopia, containing usage rules as well as machine-readable zone data that encodes much of the information displayed on the front of the card.
Figure 9 The back of an employment authorization document that also includes a machine-readable zone (MRZ).

The card includes a machine-readable zone (MRZ) containing information designed to be read through optical character recognition. The goal is to generate a Verifiable Credential securing that MRZ data; this requires a special Credential whose subject cannot be simply expressed in JSON:

Example 13: Verifiable Credential for the MRZ data
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://w3id.org/citizenship/v2",
    "https://w3id.org/citizenship/utopia/v1"
  ],
  "type": [
    "VerifiableCredential",
    "OpticalBarcodeCredential"
  ],
  "issuer": "did:web:immigration.utopia.example",
  "credentialSubject": {
    "type": "MachineReadableZone"
  },
  "proof": {
    "type": "DataIntegrity",
    "cryptosuite": "ecdsa-xi-2023",
    "verificationMethod": "did:web:immigration.utopia.example#key-4",
    "proofValue": "z4peo48uwK2EF4Fta8P...HzQMDYJ34r9gL"
  }
}

The MachineReadableZone type means to take the data directly from the MRZ, without change.

Note the usage of the ecdsa-xi-2023 cryptosuite (listed in Table 1): it allows the addition of additional, external data to the canonicalized JSON-LD data before signature. This is how the proof for the MRZ data is combined with that of the full Credential. The result is a QR Code appearing on the front of the employment card on Figure 10:

Picture of the front of an employment authorization document issued by the state of Utopia which contains a picture of the individual that is the subject of the document along with their attributes, such as name, address, height, weight, eye color, and employment privileges
Figure 10 The front of an employment authorization document that also includes a Verifiable Credential in the form of a QR code.
Issue 3

6.2 Bitstring Status List

It is often useful for an issuer of Verifiable Credentials to link to a location where a verifier can check whether a credential has been suspended or revoked. This additional resource is referred to as a “status list”.

The simplest approach for a status list, where there is a one-to-one mapping between a Verifiable Credential and a URL where the status is published, raises privacy as well as performance issues. In order to meet privacy expectations, it is useful to bundle the status of large sets of credentials into a single list to help with group privacy. However, doing so can place an impossible burden on both the server and client if the status information is as much as a few hundred bytes in size per credential across a population of hundreds of millions of holders. The Bitstring Status List v1.0 [vc-bitstring-status-list] specification defines a highly compressible, highly space-efficient bitstring-based status list mechanism.

Conceptually, a bitstring status list is a sequence of bits. When a single bit specifies a status, such as “revoked” or “suspended”, then that status is expected to be true when the bit is set and false when unset. One of the benefits of using a bitstring is that it is a highly compressible data format since, in the average case, large numbers of credentials will remain unrevoked. If compressed using run-length compression techniques such as GZIP [rfc1952] the result is a significantly smaller set of data: for a status list of size is 131,072 entries, equivalent to 16 KB of single bit values, GZIP compresses the bitstring down to a few hundred bytes when only a handful of verifiable credentials are revoked.

This diagram shows a horizontal series of adjacent boxes: on the left, there are 14 boxes, and on the right, 3 boxes, with these two groups connected by four dot characters. The groups of boxes are annotated on the right by the text '16KB'. All boxes are filled with one color (green), except for those in the 5th and 10th positions, that are filled with a different color (red). These two red boxes are labeled as 'Revoked Credentials'. All of these elements are annotated, beneath, by the remark 'ZLIB Compression' and '135 bytes', with a small icon representing computer data.
Figure 11 A visual depiction of the concepts outlined in this section.

The specification introduces the credentialStatus property, as well as some additional sub-properties, that should be used to add this additional information to a Verifiable Credential.

Example 14 shows the example from Example 11, combined with the information on the credential status: the purpose of that status information, the reference to the bitstring, and the index into this bitstring for the enclosing credential:

Example 14: The Alumni Credential with a reference to a status list
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": {
    "type": "BitstringStatusListEntry",
    "statusPurpose": "revocation",
    "statusListIndex": "9989",
    "statusListCredential": "https://university.example/CredentialStatusList"
  }
}

The statusListCredential property, when dereferenced, should return a separate Credential for the status list. The status list itself is the subject of that Credential (which, of course, can also be signed). An example is:

Example 15: A credential for a bitstring status list
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2"
  ],
  "id": "https://university.example/CredentialStatusList",
  "type": ["VerifiableCredential", "BitstringStatusListCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2005-01-01T00:00:00",
  "credentialSubject": {
    "id": "https://university.example/statuslist#list",
    "type": "BitstringStatusList",
    "statusPurpose": "revocation",
    "encodedList": "uH4sIAAAAAAAAA-3BMQEAAADCoPVPbQwfoAAAAAAAAAAAAAAAAAAAAIC3AYbSVKsAQAAA"
  }
}

The core property in this case is encodedList, which is a base64url encoded version of the GZIP compressed bitstring status list.

6.3 Forgery Defense

The publication of the Verifiable Credential Forgery Defense v1.0 [vc-forgery-defense] is complementary to quantum-resistant cryptosuites, and is motivated by the same threat. While cryptosuites let issuers secure new proofs with post-quantum signatures, this specification lets an issuer establish post-quantum-backed authenticity for credentials that are signed with conventional quantum-vulnerable algorithms. That may be the case for credentials that cannot reasonably be re-issued or where the significant size of some quantum-resistant signatures becomes an obstacle. (A good example may be the employment authorizations issued by a state or a country, as described in 6.1 Barcodes.)

The forgery defense mechanism defined by this specification is achieved by publishing a witness list that is itself the subject of a separate Verifiable Credential. A “witness” in that list is, essentially, the most significant bits of a hash value generated from the credential itself, combined with a random seed. The list combines a large number of such witnesses in one, encoded value, and the Credential is signed by, preferably, a quantum resistant scheme:

Example 16: A witness list Credential signed using a quantum-resistant scheme
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://w3id.org/vc-forgery-defense/v1rc1"
  ],
  "id": "https://university.example/witnesses",
  "type": ["VerifiableCredential", "WitnessListCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2024-01-15T00:00:00Z",
  "credentialSubject": {
    "type": "WitnessList",
    "witnessSeed": "26ea4078-968d-4d98-aba7-695610c0dfb6",
    "witnessLength": 128,
    "witnessCount": 131072,
    "encodedWitnesses": "uQYF16SSSbR_LrMZFbFvbGkn8B7ggEZtov3KVL..."
  },
  "proof": {
    "type": "DataIntegrityProof",
    "cryptosuite": "mldsa44-rdfc-2024",
    "verificationMethod": "did:example:issuer#pq-key-1",
    "proofValue": "z..."
  }
}

For older credentials, the verifier may locate the witness list in some out-of-band manner; e.g., a university may publish the location for the witnesses of all the credentials it has issued. New Verifiable Credentials may include information about the relevant witness, added to the credential status alongside status lists references:

Example 17: The Alumni Credential with a reference to a forgery witness list
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": "did:example:university.example:CSSchool",
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [{
    "type": "BitstringStatusListEntry",
    "statusPurpose": "revocation",
    "statusListIndex": "9989",
    "statusListCredential": "https://university.example/CredentialStatusList"
  },{
    "type": "WitnessListEntry",
    "witnessListCredential": "https://university.example/WitnessList",
    "witnessIndex": 5637
  }]
}

6.4 Recognized Entities

The verifiable credential ecosystem relies on the ability of verifiers to determine whether a particular issuer is recognized to issue a certain type of verifiable credential. Similarly, holders should have the ability to decide whether a particular verifier is recognized to verify a credential. Historically, these determinations have often been made through out-of-band processes, bilateral agreements, or proprietary registries that are difficult to discover, query, or reason about in an automated way. As verifiable credentials are increasingly deployed, the need for a standardized, interoperable mechanism to express and communicate recognition of entities that perform known actions becomes critical. This is the problem area addressed by the Recognized Entities v1.0 [vc-recognized-entities] specification.

Rather than mandating a central registry for issuers, this specification choses a decentralized approach. Any entity — a local governmental body, a standard institution, a university office, or a local community — can issue a special Verifiable Credential that lists all potential issuers that it “recognizes” to act either as an issuer or a verifier (e.g., all schools of the university). The design may lead to a “Web of Recognition”: the same entity can be recognized as an issuer both by the university office as well as the local governmental body, or the university office itself might be recognized by another institution, like the local Ministry of Higher Education. The specification also supports interoperability with existing trust infrastructure, such as X.509 [rfc5280] certificate authority lists and ETSI Trust Service Lists [etsi-trust].

Example 18 shows the skeleton of a Verifiable Credential, issued by the administration of Example University, which attests that the administrations of the School of Computer Science, respectively of Philosophy, can issue credentials. (Note that the Alumni Credential in our example was issued by the Schoold of Computer Science.)

Example 18: Example for recognizing two issuers
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "type": ["VerifiableCredential", "VerifiableRecognitionCredential"],
  "id": "did:example:university.example:Admin#recognitionCredential",
  "issuer": {
    "id": "did:example:university.example:Admin",
    "type": "RecognizedIssuer",
    "name": "Example University Administration"
  },
  "validFrom": "2009-01-01T00:00:00Z",
  "credentialSubject" : [{
    "id": "did:example:university.example:CSSchool",
    "type": "RecognizedEntity",
    "name": "Example University School of Computer Science Administration",
    "recognizedBy": "did:example:university.example:Admin",
    "recognizedTo" : {
      "type": "RecognizedAction",
      "action": "issue"
    }
  },{
    "id": "did:example:university.example:PhSchool",
    "type": "RecognizedEntity",
    "name": "Example University School of Philosophy Administration",
    "recognizedBy": "did:example:university.example:Admin",
    "recognizedTo": {
      "type": "RecognizedAction",
      "action": "issue"
    }
  }],
  "proof": {
    "…"
  }
}

We can also extend the Alumni Credential with the possibility for the verifier to trace back the Web of Recognition to a possible “root”. In Example 19 the data about the issuer contains the recognizedIn claim, the refers back to the credential in Example 18.

Example 19: Example for marking the issuer as being recognized on the Web of Recognition
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": {
    "id" : "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ]
}

It is interesting to note that the Recognized Entities v1.0 specification is also a perfect example for how easily application areas may define bespoke Verifiable Credential types. It simply boils down to the syntactic and semantic definition of new terms (e.g., RecognizedEntity or recognizedTo) to extend the core Verifiable Credential Data Model. Once those are defined and documented in the form of a vocabulary for JSON-LD, including an application-dependent context file, the terms can be used in a Verifiable Credential without further ado. Anyone can “publish” such a vocabulary, following some rules described in the extensibility section of the specification, no need for a central registration of the new terms.

6.5 An API for Lifecycle Management

The VCALM v1.0 [vcalm] specification provides a set of HTTP Application Programming Interfaces (HTTP APIs) and protocols for issuing, verifying, presenting, and managing Verifiable Credentials. It defines APIs among the entities corresponding to the main “roles” in the Verifiable Credential model (i.e., issuer, holder, and verifier, see also 2. Ecosystem Overview). The specification provides a reference model for components within these roles, including the corresponding APIs among those components; see Figure 13 below for the overall architecture.

Diagram showing the verifiable credential roles of Issuer, Holder, and Verifier.
Figure 12 The roles forming the basis for the VC Data Model.
API Components of Coordinators, Services, and Admin for Issuers, Verifiers, and Holders.
Figure 13 Reference model for the API Components. Arrows indicate initiation of flows.

The boundaries and interfaces among the components are defined to ensure interoperability and substitutability across the Verifiable Credential conformant ecosystem. This approach helps to avoid vendor lock-in and leads to a pool of independent implementations of interoperating components. Any given implementation of a specific role (i.e., issuer or holder) may choose to aggregate any or all of the components of the model into a single functional application. The individual components may be of a different nature (running on a browser or on a server, implemented in different programming languages, etc.), each executing just part of the overall functionality.

A. Additional Publications

A.1 Working Group Notes

The VC Working Group has also published, and maintains, a few additional documents in the form of Working Group Notes. Although these are not formal standards, they represent consensus among the Working Group Participants. These documents are:

Verifiable Credentials Use Cases
The use cases outlined in this document were, and are, instrumental in making progress toward standardization and interoperation of both low– and high–stake claims, with the goals of storing, transmitting, and receiving digitally verifiable proof of attributes such as qualifications and achievements. The use cases focus on concrete scenarios that the technology defined by the group aims to address (including for future revisions).
Verifiable Credentials Implementation Guidelines 1.0
This document provides implementation guidance for Verifiable Credentials.
Issue 4

Version 1.0 included a reference to Verifiable Credential Extensions. Some of those entries have been incorporated into the spec (e.g., Multi*) and the document does not seem to be actively maintained.

Actually, I wonder whether the list above is maintained at all. A more radical approach may be to remove this section altogether…

A.2 Standard Vocabularies

As explained in the introductory sections, the specifications define a number of standard vocabularies, i.e., standard sets of properties used as JSON names. These are used by Verifiable Credentials to ensure interoperability. Although the formal specifications of these terms are provided by the respective specifications, the vocabularies are also published as separate documents. This is done for an easier reference and overview, and these documents are also important if Credentials are used by applications based on RDF [rdf11-concepts]. These vocabulary documents are:

Verifiable Credentials Vocabulary v2.0
Definition of property names defined, primarily, by the VC Data Model specification, but also the terms defined by the VC JSON Schema, Confidence, and Rendering methods.
Security Vocabulary
Property name definitions in the VC Data Integrity and the Controlled Identifiers specifications.
Bitstring Status List Vocabulary
Property name definitions in the Bitstring Status List specification.
Editor's note

B. The Alumni Credential

Example 20 shows the Alumni Credential example used throughout this document, with all the constituents added. It is secured via different mechanisms defined for Verifiable Credentials. The issuer itself has been recognized by the administration of the University (see Example 18), which is an extra information for the verifier of this credential.

Example 20: A Verifiable Credential for alumni, with a reference to render and confidence methods, credential JSON schema, status and forgery lists.
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": ["VerifiableCredential", "ExampleAlumniCredential"],
  "issuer": {
    "id" : "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ]
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": {
    "id": "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ],
  "proof": {
    "type": "DataIntegrityProof",
    "created": "2026-07-23T12:41:59Z",
    "verificationMethod": "did:key:zDnaeT8PxR2GQNzhJRNNDkdUQyyNxWZ7Frqv3qd6nnBhePLGi",
    "cryptosuite": "ecdsa-rdfc-2019",
    "proofPurpose": "assertionMethod",
    "proofValue": "z2FFoyKFCkhewqPZwH2VUc3kqSmrnptXow2JPn54FKRP6JGwDj2v63VhhoNESjG297mvYaHu3HueoqMENRQHYsFno"
  }
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": {
    "id": "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ],
  "proof": {
    "type": "DataIntegrityProof",
    "created": "2026-07-23T12:41:59Z",
    "verificationMethod": "did:key:z6MkgGfhtiJggFLBM8fNQtqPp5z7F58QnBGKDCX6rf7rQZ9j",
    "cryptosuite": "eddsa-rdfc-2022",
    "proofPurpose": "assertionMethod",
    "proofValue": "z3RZqvMQWebuSRaHeK557vKvnzbYW6a7bLZAAJiPHzRKGeCFUaASraNmgEib9thbyRqzJGPag3jY2E3aKHQRanULP"
  }
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": {
    "id": "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ],
  "proof": {
    "type": "DataIntegrityProof",
    "verificationMethod": "did:key:zUC7Df9zwW9vyD6vhh94UH9UbyW48kmxBvTMw1fqJQ6ovKxFfQdsmeCqp5fjdED7F3ae3TaghBkiZd2RLwE38dMWixzbYjr4QavE9FEyAehLngyLKccjRj9bQDov38Tarj48DJX",
    "cryptosuite": "bbs-2023",
    "proofPurpose": "assertionMethod",
    "proofValue": "u2V0ChVhQjjn4J5wWucE5KaySmS2QwWZG1WvOgjbMIQoIVTe5qd0Q5PpQmxLKasyJsYkVtS8fNEJV19rU4cMt5eEK5i-lAggUnSVde_VVWLQeIJLNCFlYQNEXmslu1oardjM4HlVehY7mGccWMB_nk63ymq3QyEgHahWxz-yYAbjGgPXhU2mimMHT4a47VEphe-reOoceQNdYYKTy8ZBNodkfiGMgwYRhhT9zOvLZOMxQhycz0iRYg5yYaHDgMl9HB3Q9P9BjLj6ISxARgiJ0_jNgcQ2VxoMF_oiPzb26fIBHXSR9TfBePln0OzLoMeDNhjHHFjrisWT48FggbLMVyE_ZsPBSBPHVmgANz-I9hyp6wk2J_AZA6_GQjyKBZy9pc3N1ZXI"
  }
}
undefined
Protected Headers
{
  "kid": "ExHkBMW9fmbkvV266mRpuP2sUY_N_EWIN1lapUzO8ro",
  "alg": "ES256"
}
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": {
    "id": "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ]
}
application/vc+jwt
eyJraWQiOiJFeEhrQk1XOWZtYmt2VjI2Nm1ScHVQMnNVWV9OX0VXSU4xbGFwVXpPOHJvIiwiYWxnIjoiRVMyNTYifQ .eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvbnMvY3JlZGVudGlhbHMvdjIiLCJodHRwczovL3d3dy53My5vcmcvbnMvY3JlZGVudGlhbHMvZXhhbXBsZXMvdjIiXSwiaWQiOiJodHRwczovL3VuaXZlcnNpdHkuZXhhbXBsZS9DcmVkZW50aWFsMTIzIiwidHlwZSI6WyJWZXJpZmlhYmxlQ3JlZGVudGlhbCIsIkV4YW1wbGVBbHVtbmlDcmVkZW50aWFsIl0sImlzc3VlciI6eyJpZCI6ImRpZDpleGFtcGxlOnVuaXZlcnNpdHkuZXhhbXBsZTpDU1NjaG9vbCIsInJlY29nbml6ZWRJbiI6ImRpZDpleGFtcGxlOnVuaXZlcnNpdHkuZXhhbXBsZTpBZG1pbiNyZWNvZ25pdGlvbkNyZWRlbnRpYWwifSwidmFsaWRGcm9tIjoiMjAxMC0wMS0wMVQwMDowMDowMFoiLCJyZW5kZXJNZXRob2QiOnsidHlwZSI6IlRlbXBsYXRlUmVuZGVyZXJNZXRob2QiLCJyZW5kZXJTdWl0ZSI6Imh0bWwiLCJ0ZW1wbGF0ZSI6eyJpZCI6Imh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL3JlbmRlci1tZXRob2RzL2FsdW1uaWNyZWRlbnRpYWwuaHRtbCIsIm1lZGlhVHlwZSI6InRleHQvaHRtbCIsImRpZ2VzdE11bHRpYmFzZSI6InpRbWVyV0M4NVdnNndGbDl6bkZDd1l4QXBHMjcwaUV1NWg2SnFXQVBkaHl4ejJkUiJ9fSwiY3JlZGVudGlhbFN1YmplY3QiOnsiaWQiOiJodHRwczovL3d3dy5leGFtcGxlLm9yZy9wZXJzb25zL3BhdCIsIm5hbWUiOiJQYXQiLCJhbHVtbmlPZiI6eyJpZCI6ImRpZDpleGFtcGxlOmMyNzZlMTJlYzIxZWJmZWIxZjcxMmViYzZmMSIsIm5hbWUiOiJFeGFtcGxlIFVuaXZlcnNpdHkifSwiY29uZmlkZW5jZU1ldGhvZCI6eyJ0eXBlIjoiTXVsdGlrZXkiLCJwdWJsaWNLZXlNdWx0aWJhc2UiOiJ6Nk1rZjVyR01vYXRyU2oxZjRDeXZ1SEJlWEpFTGU5UlBkem8yUEtHTkNLVnRaeFAifX0sImNyZWRlbnRpYWxTY2hlbWEiOnsiaWQiOiJodHRwczovL3VuaXZlcnNpdHkuZXhhbXBsZS9DcmVkZW50aWFsMTIzLXNjaGVtYS1jcmVkZW50aWFsIiwidHlwZSI6Ikpzb25TY2hlbWFDcmVkZW50aWFsIn0sImNyZWRlbnRpYWxTdGF0dXMiOlt7InR5cGUiOiJCaXRzdHJpbmdTdGF0dXNMaXN0RW50cnkiLCJzdGF0dXNQdXJwb3NlIjoicmV2b2NhdGlvbiIsInN0YXR1c0xpc3RJbmRleCI6Ijk5ODkiLCJzdGF0dXNMaXN0Q3JlZGVudGlhbCI6Imh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL0NyZWRlbnRpYWxTdGF0dXNMaXN0In0seyJ0eXBlIjoiV2l0bmVzc0xpc3RFbnRyeSIsIndpdG5lc3NMaXN0Q3JlZGVudGlhbCI6Imh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL3dpdG5lc3NlcyIsIndpdG5lc3NJbmRleCI6NTYzN31dfQ .TIrjxoMLphwC72pmyKhhjJKKKae-1L4N9TjLz1Z88GmsbTQboYIKLb5AXAqeK9LCmy8m8ycwRvCquW7_yOhHZQ
application/vc
{
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "id": "https://university.example/Credential123",
  "type": [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ],
  "issuer": {
    "id": "did:example:university.example:CSSchool",
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential"
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "type": "TemplateRendererMethod",
    "renderSuite": "html",
    "template": {
      "id": "https://university.example/render-methods/alumnicredential.html",
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR"
    }
  },
  "credentialSubject": {
    "id": "https://www.example.org/persons/pat",
    "name": "Pat",
    "alumniOf": {
      "id": "did:example:c276e12ec21ebfeb1f712ebc6f1",
      "name": "Example University"
    },
    "confidenceMethod": {
      "type": "Multikey",
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP"
    }
  },
  "credentialSchema": {
    "id": "https://university.example/Credential123-schema-credential",
    "type": "JsonSchemaCredential"
  },
  "credentialStatus": [
    {
      "type": "BitstringStatusListEntry",
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList"
    },
    {
      "type": "WitnessListEntry",
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637
    }
  ]
}
application/vc+cose
d28443a10128a05905207b2240636f6e74657874223a5b2268747470733a2f2f7777772e77332e6f72672f6e732f63726564656e7469616c732f7632222c2268747470733a2f2f7777772e77332e6f72672f6e732f63726564656e7469616c732f6578616d706c65732f7632225d2c226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f43726564656e7469616c313233222c2274797065223a5b2256657269666961626c6543726564656e7469616c222c224578616d706c65416c756d6e6943726564656e7469616c225d2c22697373756572223a7b226964223a226469643a6578616d706c653a756e69766572736974792e6578616d706c653a43535363686f6f6c222c227265636f676e697a6564496e223a226469643a6578616d706c653a756e69766572736974792e6578616d706c653a41646d696e237265636f676e6974696f6e43726564656e7469616c227d2c2276616c696446726f6d223a22323031302d30312d30315430303a30303a30305a222c2272656e6465724d6574686f64223a7b2274797065223a2254656d706c61746552656e64657265724d6574686f64222c2272656e6465725375697465223a2268746d6c222c2274656d706c617465223a7b226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f72656e6465722d6d6574686f64732f616c756d6e6963726564656e7469616c2e68746d6c222c226d6564696154797065223a22746578742f68746d6c222c226469676573744d756c746962617365223a227a516d65725743383557673677466c397a6e46437759784170473237306945753568364a71574150646879787a326452227d7d2c2263726564656e7469616c5375626a656374223a7b226964223a2268747470733a2f2f7777772e6578616d706c652e6f72672f706572736f6e732f706174222c226e616d65223a22506174222c22616c756d6e694f66223a7b226964223a226469643a6578616d706c653a633237366531326563323165626665623166373132656263366631222c226e616d65223a224578616d706c6520556e6976657273697479227d2c22636f6e666964656e63654d6574686f64223a7b2274797065223a224d756c74696b6579222c227075626c69634b65794d756c746962617365223a227a364d6b663572474d6f617472536a31663443797675484265584a454c65395250647a6f32504b474e434b56745a7850227d7d2c2263726564656e7469616c536368656d61223a7b226964223a2268747470733a2f2f756e69766572736974792e6578616d706c652f43726564656e7469616c3132332d736368656d612d63726564656e7469616c222c2274797065223a224a736f6e536368656d6143726564656e7469616c227d2c2263726564656e7469616c537461747573223a5b7b2274797065223a22426974737472696e675374617475734c697374456e747279222c22737461747573507572706f7365223a227265766f636174696f6e222c227374617475734c697374496e646578223a2239393839222c227374617475734c69737443726564656e7469616c223a2268747470733a2f2f756e69766572736974792e6578616d706c652f43726564656e7469616c5374617475734c697374227d2c7b2274797065223a225769746e6573734c697374456e747279222c227769746e6573734c69737443726564656e7469616c223a2268747470733a2f2f756e69766572736974792e6578616d706c652f7769746e6573736573222c227769746e657373496e646578223a353633377d5d7d5840409dc1c3748683983f3cd6b4641c6f3ed968aefcd0bcfbccfa1c2e2773f9b257898d7ea4267a6bb6ab9a6cd29a3683bea8a3b4432f0216031f6e14395df7d8aa
eyJraWQiOiJFeEhrQk1XOWZtYmt2VjI2Nm1ScHVQMnNVWV9OX0VXSU4xbGFwVXpPOHJvIiwiYWxnIjoiRVMyNTYifQ .eyJfc2RfYWxnIjoic2hhLTI1NiIsIkBjb250ZXh0IjpbImh0dHBzOi8vd3d3LnczLm9yZy9ucy9jcmVkZW50aWFscy92MiIsImh0dHBzOi8vd3d3LnczLm9yZy9ucy9jcmVkZW50aWFscy9leGFtcGxlcy92MiJdLCJpc3N1ZXIiOnsicmVjb2duaXplZEluIjoiZGlkOmV4YW1wbGU6dW5pdmVyc2l0eS5leGFtcGxlOkFkbWluI3JlY29nbml0aW9uQ3JlZGVudGlhbCIsIl9zZCI6WyJERDZMY1B6QWMyY3kzMXp6VHhLWlZwbjF2REx0OVhPakhKeXNSNy1kQmNRIl19LCJ2YWxpZEZyb20iOiIyMDEwLTAxLTAxVDAwOjAwOjAwWiIsInJlbmRlck1ldGhvZCI6eyJyZW5kZXJTdWl0ZSI6Imh0bWwiLCJ0ZW1wbGF0ZSI6eyJtZWRpYVR5cGUiOiJ0ZXh0L2h0bWwiLCJkaWdlc3RNdWx0aWJhc2UiOiJ6UW1lcldDODVXZzZ3Rmw5em5GQ3dZeEFwRzI3MGlFdTVoNkpxV0FQZGh5eHoyZFIiLCJfc2QiOlsidWU4eFpSQWdBNGlNaUp5ckxCU0dxYm5IS0w0R0U3R3FSOXpoNlFrOGwwWSJdfSwiX3NkIjpbInJzRkg5dkV1czdtZzJFUUcxek1KZVRsc2cycmVsbm1sejRQNmlvdmpZUEEiXX0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7Im5hbWUiOiJQYXQiLCJhbHVtbmlPZiI6eyJuYW1lIjoiRXhhbXBsZSBVbml2ZXJzaXR5IiwiX3NkIjpbImxqRG1Fd29tQVJEYXNQdnA0UzRqeUh5V0FmRkdiWXM0SzhiRGVCNHI3RDAiXX0sImNvbmZpZGVuY2VNZXRob2QiOnsicHVibGljS2V5TXVsdGliYXNlIjoiejZNa2Y1ckdNb2F0clNqMWY0Q3l2dUhCZVhKRUxlOVJQZHpvMlBLR05DS1Z0WnhQIiwiX3NkIjpbIk9MWWYwMWFoZ3F1TlVTNU9hWGsxdW4waWJaaE9JNGE5U2FsU001dV9lc28iXX0sIl9zZCI6WyJRenhEbDJ5Yi1jRC04cTlpNThMYnNiMVRYQnBoaC14dnJhUC1FcmRiak40Il19LCJjcmVkZW50aWFsU2NoZW1hIjp7Il9zZCI6WyJRV1dMOFN3TTZUb0hpSnllMzI0R19pT24zeDlvaC1jYXNqbDdILUc5TklRIiwiaVdVbUI0WlZvM2theUZRZUozeUV1UktiVFRSLWxrT2U5dXFuX0VKV0QyZyJdfSwiY3JlZGVudGlhbFN0YXR1cyI6W3sic3RhdHVzUHVycG9zZSI6InJldm9jYXRpb24iLCJzdGF0dXNMaXN0SW5kZXgiOiI5OTg5Iiwic3RhdHVzTGlzdENyZWRlbnRpYWwiOiJodHRwczovL3VuaXZlcnNpdHkuZXhhbXBsZS9DcmVkZW50aWFsU3RhdHVzTGlzdCIsIl9zZCI6WyJyMkp4TW5aWmVmLXM2eXRBeHlmSzQ1cThzbzFYTXVCZWZxUUh0bW13YV9JIl19LHsid2l0bmVzc0xpc3RDcmVkZW50aWFsIjoiaHR0cHM6Ly91bml2ZXJzaXR5LmV4YW1wbGUvd2l0bmVzc2VzIiwid2l0bmVzc0luZGV4Ijo1NjM3LCJfc2QiOlsieXAyVWhqOUxUVU0zWXVDcjlIQUUtNlY5NEpXZ0x3dkVqWklnTjZSY01ubyJdfV0sIl9zZCI6WyIwVlRTa21ScUdKcVlqZkQzN0dmS1dsQTdYY0FhYXRNclJ2bnlzNi05RjN3IiwiQjJ5NFQ5c3lQaWN2YlZPQU5wbDdDTVFBdVFWYzVFcm1zcUtCcDFuNHBQNCJdfQ ._bjUdl36sYyWECwZyY45geZ4m5xvBb5opNamRFwWH4kQFvE0sHjMSGqkWGlhYSeLARBeua9icAKNhUkb6vZ3OQ ~WyJYemRoUEVsdWJkNTNhamlpaF9nV1VBIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL0NyZWRlbnRpYWwxMjMiXQ~WyJIRG85LXVaMTFrV3VEb0FBR3NkRHh3IiwgInR5cGUiLCBbIlZlcmlmaWFibGVDcmVkZW50aWFsIiwgIkV4YW1wbGVBbHVtbmlDcmVkZW50aWFsIl1d~WyJVdTJZSHp0UHFTRlNYLURqaWFDb0NBIiwgImlkIiwgImRpZDpleGFtcGxlOnVuaXZlcnNpdHkuZXhhbXBsZTpDU1NjaG9vbCJd~WyJxeTJ0a0hDV1RZNnlLZjVEQUsxV3ZBIiwgInR5cGUiLCAiVGVtcGxhdGVSZW5kZXJlck1ldGhvZCJd~WyJVWVFJVS1Id3BPVFgwSjh2WWVmRmlnIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL3JlbmRlci1tZXRob2RzL2FsdW1uaWNyZWRlbnRpYWwuaHRtbCJd~WyI3S09PcE5rakJfNmdleVhLbnNXV1pRIiwgImlkIiwgImh0dHBzOi8vd3d3LmV4YW1wbGUub3JnL3BlcnNvbnMvcGF0Il0~WyJiMFdBMncyWndMLWw1ZWNVbkNBUFB3IiwgImlkIiwgImRpZDpleGFtcGxlOmMyNzZlMTJlYzIxZWJmZWIxZjcxMmViYzZmMSJd~WyJDamVQbXdIVlhQNW94eDk2RVhoOVRRIiwgInR5cGUiLCAiTXVsdGlrZXkiXQ~WyJ6R2ZQeXVPV0FwVzA5Z09oU2JDVFVRIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL0NyZWRlbnRpYWwxMjMtc2NoZW1hLWNyZWRlbnRpYWwiXQ~WyJwNkpKVXNtcWRjOV9GVlJZdEZxZzVnIiwgInR5cGUiLCAiSnNvblNjaGVtYUNyZWRlbnRpYWwiXQ~WyJXUVlqQ0ZUWjF6WGZDMDBlS2Y1WTZ3IiwgInR5cGUiLCAiQml0c3RyaW5nU3RhdHVzTGlzdEVudHJ5Il0~WyJyQlhUbVpTSzRsZE9tSzh0aFh6NTFRIiwgInR5cGUiLCAiV2l0bmVzc0xpc3RFbnRyeSJd~
{
  "kid": "ExHkBMW9fmbkvV266mRpuP2sUY_N_EWIN1lapUzO8ro",
  "alg": "ES256"
}
{
  "_sd_alg": "sha-256",
  "@context": [
    "https://www.w3.org/ns/credentials/v2",
    "https://www.w3.org/ns/credentials/examples/v2"
  ],
  "issuer": {
    "recognizedIn": "did:example:university.example:Admin#recognitionCredential",
    "_sd": [
      "DD6LcPzAc2cy31zzTxKZVpn1vDLt9XOjHJysR7-dBcQ"
    ]
  },
  "validFrom": "2010-01-01T00:00:00Z",
  "renderMethod": {
    "renderSuite": "html",
    "template": {
      "mediaType": "text/html",
      "digestMultibase": "zQmerWC85Wg6wFl9znFCwYxApG270iEu5h6JqWAPdhyxz2dR",
      "_sd": [
        "ue8xZRAgA4iMiJyrLBSGqbnHKL4GE7GqR9zh6Qk8l0Y"
      ]
    },
    "_sd": [
      "rsFH9vEus7mg2EQG1zMJeTlsg2relnmlz4P6iovjYPA"
    ]
  },
  "credentialSubject": {
    "name": "Pat",
    "alumniOf": {
      "name": "Example University",
      "_sd": [
        "ljDmEwomARDasPvp4S4jyHyWAfFGbYs4K8bDeB4r7D0"
      ]
    },
    "confidenceMethod": {
      "publicKeyMultibase": "z6Mkf5rGMoatrSj1f4CyvuHBeXJELe9RPdzo2PKGNCKVtZxP",
      "_sd": [
        "OLYf01ahgquNUS5OaXk1un0ibZhOI4a9SalSM5u_eso"
      ]
    },
    "_sd": [
      "QzxDl2yb-cD-8q9i58Lbsb1TXBphh-xvraP-ErdbjN4"
    ]
  },
  "credentialSchema": {
    "_sd": [
      "QWWL8SwM6ToHiJye324G_iOn3x9oh-casjl7H-G9NIQ",
      "iWUmB4ZVo3kayFQeJ3yEuRKbTTR-lkOe9uqn_EJWD2g"
    ]
  },
  "credentialStatus": [
    {
      "statusPurpose": "revocation",
      "statusListIndex": "9989",
      "statusListCredential": "https://university.example/CredentialStatusList",
      "_sd": [
        "r2JxMnZZef-s6ytAxyfK45q8so1XMuBefqQHtmmwa_I"
      ]
    },
    {
      "witnessListCredential": "https://university.example/witnesses",
      "witnessIndex": 5637,
      "_sd": [
        "yp2Uhj9LTUM3YuCr9HAE-6V94JWgLwvEjZIgN6RcMno"
      ]
    }
  ],
  "_sd": [
    "0VTSkmRqGJqYjfD37GfKWlA7XcAaatMrRvnys6-9F3w",
    "B2y4T9syPicvbVOANpl7CMQAuQVc5ErmsqKBp1n4pP4"
  ]
}

Claim: id

SHA-256 Hash: B2y4T9syPicvbVOANpl7CMQAuQVc5ErmsqKBp1n4pP4

Disclosure(s): WyJYemRoUEVsdWJkNTNhamlpaF9nV1VBIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL0NyZWRlbnRpYWwxMjMiXQ

Contents: [
  "XzdhPElubd53ajiih_gWUA",
  "id",
  "https://university.example/Credential123"
]

Claim: type

SHA-256 Hash: 0VTSkmRqGJqYjfD37GfKWlA7XcAaatMrRvnys6-9F3w

Disclosure(s): WyJIRG85LXVaMTFrV3VEb0FBR3NkRHh3IiwgInR5cGUiLCBbIlZlcmlmaWFibGVDcmVkZW50aWFsIiwgIkV4YW1wbGVBbHVtbmlDcmVkZW50aWFsIl1d

Contents: [
  "HDo9-uZ11kWuDoAAGsdDxw",
  "type",
  [
    "VerifiableCredential",
    "ExampleAlumniCredential"
  ]
]

Claim: id

SHA-256 Hash: DD6LcPzAc2cy31zzTxKZVpn1vDLt9XOjHJysR7-dBcQ

Disclosure(s): WyJVdTJZSHp0UHFTRlNYLURqaWFDb0NBIiwgImlkIiwgImRpZDpleGFtcGxlOnVuaXZlcnNpdHkuZXhhbXBsZTpDU1NjaG9vbCJd

Contents: [
  "Uu2YHztPqSFSX-DjiaCoCA",
  "id",
  "did:example:university.example:CSSchool"
]

Claim: type

SHA-256 Hash: rsFH9vEus7mg2EQG1zMJeTlsg2relnmlz4P6iovjYPA

Disclosure(s): WyJxeTJ0a0hDV1RZNnlLZjVEQUsxV3ZBIiwgInR5cGUiLCAiVGVtcGxhdGVSZW5kZXJlck1ldGhvZCJd

Contents: [
  "qy2tkHCWTY6yKf5DAK1WvA",
  "type",
  "TemplateRendererMethod"
]

Claim: id

SHA-256 Hash: ue8xZRAgA4iMiJyrLBSGqbnHKL4GE7GqR9zh6Qk8l0Y

Disclosure(s): WyJVWVFJVS1Id3BPVFgwSjh2WWVmRmlnIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL3JlbmRlci1tZXRob2RzL2FsdW1uaWNyZWRlbnRpYWwuaHRtbCJd

Contents: [
  "UYQIU-HwpOTX0J8vYefFig",
  "id",
  "https://university.example/render-methods/alumnicredential.html"
]

Claim: id

SHA-256 Hash: QzxDl2yb-cD-8q9i58Lbsb1TXBphh-xvraP-ErdbjN4

Disclosure(s): WyI3S09PcE5rakJfNmdleVhLbnNXV1pRIiwgImlkIiwgImh0dHBzOi8vd3d3LmV4YW1wbGUub3JnL3BlcnNvbnMvcGF0Il0

Contents: [
  "7KOOpNkjB_6geyXKnsWWZQ",
  "id",
  "https://www.example.org/persons/pat"
]

Claim: id

SHA-256 Hash: ljDmEwomARDasPvp4S4jyHyWAfFGbYs4K8bDeB4r7D0

Disclosure(s): WyJiMFdBMncyWndMLWw1ZWNVbkNBUFB3IiwgImlkIiwgImRpZDpleGFtcGxlOmMyNzZlMTJlYzIxZWJmZWIxZjcxMmViYzZmMSJd

Contents: [
  "b0WA2w2ZwL-l5ecUnCAPPw",
  "id",
  "did:example:c276e12ec21ebfeb1f712ebc6f1"
]

Claim: type

SHA-256 Hash: OLYf01ahgquNUS5OaXk1un0ibZhOI4a9SalSM5u_eso

Disclosure(s): WyJDamVQbXdIVlhQNW94eDk2RVhoOVRRIiwgInR5cGUiLCAiTXVsdGlrZXkiXQ

Contents: [
  "CjePmwHVXP5oxx96EXh9TQ",
  "type",
  "Multikey"
]

Claim: id

SHA-256 Hash: iWUmB4ZVo3kayFQeJ3yEuRKbTTR-lkOe9uqn_EJWD2g

Disclosure(s): WyJ6R2ZQeXVPV0FwVzA5Z09oU2JDVFVRIiwgImlkIiwgImh0dHBzOi8vdW5pdmVyc2l0eS5leGFtcGxlL0NyZWRlbnRpYWwxMjMtc2NoZW1hLWNyZWRlbnRpYWwiXQ

Contents: [
  "zGfPyuOWApW09gOhSbCTUQ",
  "id",
  "https://university.example/Credential123-schema-credential"
]

Claim: type

SHA-256 Hash: QWWL8SwM6ToHiJye324G_iOn3x9oh-casjl7H-G9NIQ

Disclosure(s): WyJwNkpKVXNtcWRjOV9GVlJZdEZxZzVnIiwgInR5cGUiLCAiSnNvblNjaGVtYUNyZWRlbnRpYWwiXQ

Contents: [
  "p6JJUsmqdc9_FVRYtFqg5g",
  "type",
  "JsonSchemaCredential"
]

Claim: type

SHA-256 Hash: r2JxMnZZef-s6ytAxyfK45q8so1XMuBefqQHtmmwa_I

Disclosure(s): WyJXUVlqQ0ZUWjF6WGZDMDBlS2Y1WTZ3IiwgInR5cGUiLCAiQml0c3RyaW5nU3RhdHVzTGlzdEVudHJ5Il0

Contents: [
  "WQYjCFTZ1zXfC00eKf5Y6w",
  "type",
  "BitstringStatusListEntry"
]

Claim: type

SHA-256 Hash: yp2Uhj9LTUM3YuCr9HAE-6V94JWgLwvEjZIgN6RcMno

Disclosure(s): WyJyQlhUbVpTSzRsZE9tSzh0aFh6NTFRIiwgInR5cGUiLCAiV2l0bmVzc0xpc3RFbnRyeSJd

Contents: [
  "rBXTmZSK4ldOmK8thXz51Q",
  "type",
  "WitnessListEntry"
]

Issue 5

C. References

C.1 Informative references

[cbor-ld]
CBOR-LD 1.0. Manu Sporny; Dave Longley; Wesley Smith. W3C. 20 July 2026. W3C Working Draft. URL: https://www.w3.org/TR/cbor-ld-10/
[cfrg-bbs-signature]
The BBS Signature Scheme. Tobias Looker; Vasilis Kalos; Andrew Whitehead; Mike Lodder. IETF. I-D. URL: https://www.ietf.org/archive/id/draft-irtf-cfrg-bbs-signatures-05.html
[cid]
Controlled Identifiers v1.0. Michael Jones; Manu Sporny. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/cid-1.0/
[did-core]
Decentralized Identifiers (DIDs) v1.0. Manu Sporny; Amy Guy; Markus Sabadello; Drummond Reed. W3C. 19 July 2022. W3C Recommendation. URL: https://www.w3.org/TR/did-core/
[etsi-trust]
Electronic Signatures and Trust Infrastructures (ESI); Trusted Lists, ETSI TS 119 612. ETSI. URL: https://www.etsi.org/deliver/etsi_ts/119600_119699/119612/02.04.01_60/ts_119612v020401p.pdf
[FALCON]
Fast-Fourier Lattice-based Compact Signatures over NTRU. URL: https://falcon-sign.info/
[fips-186-5]
FIPS PUB 186-5: Digital Signature Standard (DSS). U.S. Department of Commerce/National Institute of Standards and Technology. 3 February 2023. National Standard. URL: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf
[fips-204]
Module-Lattice-Based Digital Signature Standard. Federal Information Processing Standards. August 2024. URL: https://csrc.nist.gov/pubs/fips/204/final
[fips-205]
Stateless Hash-Based Digital Signature Standard. Federal Information Processing Standards. August 2024. URL: https://csrc.nist.gov/pubs/fips/205/final
[json-ld11]
JSON-LD 1.1. Gregg Kellogg; Pierre-Antoine Champin; Dave Longley. W3C. 16 July 2020. W3C Recommendation. URL: https://www.w3.org/TR/json-ld11/
[json-schema]
JSON Schema: A Media Type for Describing JSON Documents. Austin Wright; Henry Andrews; Ben Hutton; Greg Dennis. Internet Engineering Task Force (IETF). 10 June 2022. Internet-Draft. URL: https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema
[rdf-canon]
RDF Dataset Canonicalization. Gregg Kellogg; Dave Longley; Dan Yamamoto. W3C. 21 May 2024. W3C Recommendation. URL: https://www.w3.org/TR/rdf-canon/
[rdf11-concepts]
RDF 1.1 Concepts and Abstract Syntax. Richard Cyganiak; David Wood; Markus Lanthaler. W3C. 25 February 2014. W3C Recommendation. URL: https://www.w3.org/TR/rdf11-concepts/
[rfc1952]
GZIP file format specification version 4.3. P. Deutsch. IETF. May 1996. Informational. URL: https://www.rfc-editor.org/info/rfc1952/
[rfc5280]
Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile. D. Cooper; S. Santesson; S. Farrell; S. Boeyen; R. Housley; W. Polk. IETF. May 2008. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc5280/
[rfc6901]
JavaScript Object Notation (JSON) Pointer. P. Bryan, Ed.; K. Zyp; M. Nottingham, Ed. IETF. April 2013. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc6901/
[rfc7515]
JSON Web Signature (JWS). M. Jones; J. Bradley; N. Sakimura. IETF. May 2015. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc7515/
[rfc7517]
JSON Web Key (JWK). M. Jones. IETF. May 2015. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc7517/
[rfc7519]
JSON Web Token (JWT). M. Jones; J. Bradley; N. Sakimura. IETF. May 2015. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc7519/
[rfc8032]
Edwards-Curve Digital Signature Algorithm (EdDSA). S. Josefsson; I. Liusvaara. IETF. January 2017. Informational. URL: https://www.rfc-editor.org/info/rfc8032/
[rfc8785]
JSON Canonicalization Scheme (JCS). A. Rundgren; B. Jordan; S. Erdtman. IETF. June 2020. Informational. URL: https://www.rfc-editor.org/info/rfc8785/
[rfc8949]
Concise Binary Object Representation (CBOR). C. Bormann; P. Hoffman. IETF. December 2020. Internet Standard. URL: https://www.rfc-editor.org/info/rfc8949/
[rfc9052]
CBOR Object Signing and Encryption (COSE): Structures and Process. J. Schaad. IETF. August 2022. Internet Standard. URL: https://www.rfc-editor.org/info/rfc9052/
[rfc9563]
SM2 Digital Signature Algorithm for DNSSEC. C. Zhang; Y. Liu; F. Leng; Q. Zhao; Z. He. IETF. December 2024. Informational. URL: https://www.rfc-editor.org/info/rfc9563/
[rfc9901]
Selective Disclosure for JSON Web Tokens. D. Fett; K. Yasuda; B. Campbell. IETF. November 2025. Proposed Standard. URL: https://www.rfc-editor.org/info/rfc9901/
[SQIsign]
SQI Sign. URL: https://sqisign.org/
[URL]
URL Standard. Anne van Kesteren. WHATWG. Living Standard. URL: https://url.spec.whatwg.org/
[vc-barcodes]
Verifiable Credential Barcodes v1.0. Wesley Smith; Elaine Wooton; Manu Sporny. W3C. 15 July 2026. W3C Working Draft. URL: https://www.w3.org/TR/vc-barcodes-1.0/
[vc-bitstring-status-list]
Bitstring Status List v1.0. Manu Sporny; Dave Longley; Mahmoud Alkhraishi; Michael Prorock. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-bitstring-status-list/
[vc-confidence-method]
Confidence Method v1.0. Joe Andrieu; Denken Chen. W3C. 16 July 2026. W3C Working Draft. URL: https://www.w3.org/TR/vc-confidence-method/
[vc-data-integrity]
Verifiable Credential Data Integrity 1.0. Ivan Herman; Manu Sporny; Ted Thibodeau Jr; Dave Longley; Greg Bernstein. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-data-integrity/
[vc-data-model]
Verifiable Credentials Data Model v2.0. Ivan Herman; Michael Jones; Manu Sporny; Ted Thibodeau Jr; Gabe Cohen. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-data-model-2.0/
[vc-di-bbs]
Data Integrity BBS Cryptosuites v1.0. Greg Bernstein; Manu Sporny. W3C. 7 April 2026. CRD. URL: https://www.w3.org/TR/vc-di-bbs/
[vc-di-ecdsa]
Data Integrity ECDSA Cryptosuites v1.0. Manu Sporny; Dave Longley; Greg Bernstein. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-di-ecdsa/
[vc-di-eddsa]
Data Integrity EdDSA Cryptosuites v1.0. Manu Sporny; Ted Thibodeau Jr; Greg Bernstein. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-di-eddsa/
[vc-di-quantum-resistant]
Quantum-Resistant Cryptosuites v1.0. Manu Sporny; Greg Bernstein. W3C. 16 June 2026. FPWD. URL: https://www.w3.org/TR/vc-di-quantum-resistant-1.0/
[vc-forgery-defense]
Verifiable Credential Forgery Defense v1.0. Wesley Smith; Elaine Wooton. W3C. 14 July 2026. W3C Working Draft. URL: https://www.w3.org/TR/vc-forgery-defense-1.0/
[vc-jose-cose]
Securing Verifiable Credentials using JOSE and COSE. Michael Jones; Gabe Cohen; Michael Prorock. W3C. 15 May 2025. W3C Recommendation. URL: https://www.w3.org/TR/vc-jose-cose/
[vc-json-schema]
Verifiable Credentials JSON Schema Specification. Gabe Cohen; Michael Prorock; Mahmoud Alkhraishi. W3C. 4 February 2025. CRD. URL: https://www.w3.org/TR/vc-json-schema/
[vc-recognized-entities]
Recognized Entities v1.0. Manu Sporny. W3C. 12 May 2026. FPWD. URL: https://www.w3.org/TR/vc-recognized-entities-1.0/
[vc-render-method]
Verifiable Credential Rendering Methods v1.0. Dmitri Zagidulin; Manu Sporny; Patrick St-Louis; Poh Hendry; Isaac Koh. W3C. 5 April 2026. W3C Working Draft. URL: https://www.w3.org/TR/vc-render-method/
[vcalm]
VCALM v1.0. Patrick St-Louis; Kayode Ezike; Manu Sporny; Ted Thibodeau Jr. W3C. 21 July 2026. W3C Working Draft. URL: https://www.w3.org/TR/vcalm-1.0/