/** * Defines the claim format based on the formats registered in * [DIF Claim Format Registry](https://identity.foundation/claim-format-registry/). */ export enum ClaimFormat { Jwt = 'jwt', JwtVc = 'jwt_vc', JwtVp = 'jwt_vp', Ldp = 'ldp', LdpVc = 'ldp_vc', LdpVp = 'ldp_vp', }