JSON: {
    context: Pick<VerificationRequestV1.Context, "type" | "requested"> & {
        given: GivenContextJSON[];
    };
    credentialStatements: StatementJSON[];
    transactionRef: TransactionHash.JSON;
    type: "ConcordiumVerificationRequestV1";
}

JSON representation of a verification request. Used for serialization and network transmission of request data.

Type declaration

  • context: Pick<VerificationRequestV1.Context, "type" | "requested"> & {
        given: GivenContextJSON[];
    }

    The request context with serialized given contexts

  • credentialStatements: StatementJSON[]

    The credential statements being requested

  • transactionRef: TransactionHash.JSON

    Reference to the blockchain transaction containing the request anchor

  • type: "ConcordiumVerificationRequestV1"

Generated using TypeDoc