JSON: {
    context: Pick<VerificationRequestV1.Context, "type" | "requested"> & {
        given: GivenContextJSON[];
    };
    subjectClaims: SubjectClaimsJSON[];
    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

  • subjectClaims: SubjectClaimsJSON[]

    The credential subject claims being requested

  • transactionRef: TransactionHash.JSON

    Reference to the blockchain transaction containing the request anchor

  • type: "ConcordiumVerificationRequestV1"

Generated using TypeDoc