interface CredentialWebSemanticVerifyStartEventSanitised {
    category: "credential-web-semantic";
    data: {
        assertExpiry: undefined | boolean;
        assertValidFrom: boolean;
        assertValidUntil: undefined | boolean;
        checkRevocation: boolean;
        credential: undefined;
        credentialSize: number;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "credential-web-semantic"
data: {
    assertExpiry: undefined | boolean;
    assertValidFrom: boolean;
    assertValidUntil: undefined | boolean;
    checkRevocation: boolean;
    credential: {
        @context: string | object | (string | object)[];
        credentialStatus: undefined | {
            id: string;
            type: string;
        };
        credentialSubject: string | {
            id: undefined | string;
        } | {
            id: undefined | string;
        }[];
        expirationDate: undefined | string;
        id: undefined | string;
        issuanceDate: string;
        issuer: string | {
            id: string;
        };
        proof: {
            type: string;
        } | {
            type: string;
        }[];
        type: string | string[];
    };
    credentialSize: number;
}

Type declaration

  • assertExpiry: undefined | boolean
  • assertValidFrom: boolean
  • assertValidUntil: undefined | boolean
  • checkRevocation: boolean
  • Sanitisation Level PII credential: {
        @context: string | object | (string | object)[];
        credentialStatus: undefined | {
            id: string;
            type: string;
        };
        credentialSubject: string | {
            id: undefined | string;
        } | {
            id: undefined | string;
        }[];
        expirationDate: undefined | string;
        id: undefined | string;
        issuanceDate: string;
        issuer: string | {
            id: string;
        };
        proof: {
            type: string;
        } | {
            type: string;
        }[];
        type: string | string[];
    }
    • @context: string | object | (string | object)[]
    • credentialStatus: undefined | {
          id: string;
          type: string;
      }
    • credentialSubject: string | {
          id: undefined | string;
      } | {
          id: undefined | string;
      }[]
    • expirationDate: undefined | string
    • id: undefined | string
    • issuanceDate: string
    • issuer: string | {
          id: string;
      }
    • proof: {
          type: string;
      } | {
          type: string;
      }[]
    • type: string | string[]
  • credentialSize: number
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"