Interface CredentialCompactSemanticSignSuccessEventSanitised

interface CredentialCompactSemanticSignSuccessEventSanitised {
    category: "credential-compact-semantic";
    data: {
        decoded: {
            exp: undefined | number;
            jti: string;
            nbf: number;
            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: {
    decoded: {
        exp: undefined | number;
        jti: string;
        nbf: number;
        status: undefined | {
            index: number;
            type: undefined | "BitIndexRevocationList";
            url: string;
        };
    };
}

Type declaration

  • decoded: {
        exp: undefined | number;
        jti: string;
        nbf: number;
        status: undefined | {
            index: number;
            type: undefined | "BitIndexRevocationList";
            url: string;
        };
    }
    • exp: undefined | number
    • jti: string
    • nbf: number
    • status: undefined | {
          index: number;
          type: undefined | "BitIndexRevocationList";
          url: string;
      }
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"