namespace DigitalData.Auth.Claims
{
///
/// Defines the custom JWT claim names used for envelope receiver tokens.
/// These claims are domain-specific and have no equivalent in .
///
public static class EnvelopeClaimNames
{
///
/// The database primary key of the envelope.
/// Claim name: envelope_id
///
public const string EnvelopeId = "envelope_id";
///
/// The unique identifier (UUID) of the envelope.
/// Claim name: envelope_uuid
///
public const string EnvelopeUuid = "envelope_uuid";
///
/// The database primary key of the envelope receiver.
/// Claim name: receiver_id
///
public const string ReceiverId = "receiver_id";
///
/// The cryptographic signature of the envelope receiver.
/// Together with , it forms the unique envelope key via ToEnvelopeKey().
/// Claim name: receiver_sig
///
public const string ReceiverSignature = "receiver_sig";
}
}