Type alias CredentialSchemaSubject

CredentialSchemaSubject: {
    properties: {
        attributes: CredentialSchemaAttributes;
        id: IdDetails;
    };
    required: string[];
    type: "object";
}

Complete schema definition for credential subjects.

Type declaration

  • properties: {
        attributes: CredentialSchemaAttributes;
        id: IdDetails;
    }

    Schema properties for the credential subject.

    • attributes: CredentialSchemaAttributes

      Schema for the attributes collection.

    • id: IdDetails

      Schema for the identifier field.

  • required: string[]

    List of required fields in the credential subject.

  • type: "object"

    The credential subject is represented as an object.

Generated using TypeDoc