This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/signature-level.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. SignatureLevel

Specifies the PAdES baseline level to produce when applying a digital signature.

from nutrient_sdk import SignatureLevel

Values

NameValueDescription
SignatureLevel.PADES_BASELINE_B0PAdES baseline B (B-B): a basic signature. This is the default.
SignatureLevel.PADES_BASELINE_T1PAdES baseline T (B-T): a basic signature plus a trusted timestamp. Requires a timestamp configuration to be provided.
SignatureLevel.PADES_BASELINE_LT2PAdES baseline LT (B-LT): long-term validation material — certificates and revocation information — is embedded in the document. Requires a timestamp configuration and network access to reach revocation services.
SignatureLevel.PADES_BASELINE_LTA3PAdES baseline LTA (B-LTA): long-term validation material plus a document timestamp that protects it. Requires a timestamp configuration and network access.

Usage Example

from nutrient_sdk import SignatureLevel
# Access enum values
value = SignatureLevel.PADES_BASELINE_B
print(f"Value: {value}") # Output: Value: SignatureLevel.PADES_BASELINE_B
print(f"Integer value: {value.value}") # Output: Integer value: 0