Interface CredentialCompactSemanticSignStartEventSanitised

interface CredentialCompactSemanticSignStartEventSanitised {
    category: "credential-compact-semantic";
    data: {
        exp: undefined | number;
        isRevoked: boolean;
        iss: string;
        nbf: undefined | number;
        revocable: boolean;
        status: undefined | {
            index: number;
            type: undefined | "BitIndexRevocationList";
            url: string;
        };
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-compact-semantic"
data: {
    exp: undefined | number;
    isRevoked: boolean;
    iss: string;
    nbf: undefined | number;
    revocable: boolean;
    status: undefined | {
        index: number;
        type: undefined | "BitIndexRevocationList";
        url: string;
    };
}

Type declaration

  • exp: undefined | number
  • isRevoked: boolean
  • iss: string
  • nbf: undefined | number
  • revocable: boolean
  • status: undefined | {
        index: number;
        type: undefined | "BitIndexRevocationList";
        url: string;
    }
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"