Credential claim data

interface CredentialClaim {
    claim: string;
    expiresAt?: number;
    issuer?: string;
    privateData: Record<string, any>;
    type: CredentialType;
}

Properties

claim: string

Public claim statement

expiresAt?: number

Expiration timestamp (optional)

issuer?: string

Issuer of the credential (optional)

privateData: Record<string, any>

Private data that proves the claim

Type of credential