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

Specifies the certification (DocMDP) level of a signature. A certifying signature must be the first signature applied to a document and declares which subsequent changes are permitted.

from nutrient_sdk import SignatureCertificationLevel

Values

NameValueDescription
SignatureCertificationLevel.NOT_CERTIFIED0Not a certifying signature — an ordinary approval signature. This is the default.
SignatureCertificationLevel.NO_CHANGES1No changes are permitted after certification; any change invalidates the signature.
SignatureCertificationLevel.FORM_FILLING2Only form fill-in and signing are permitted after certification.
SignatureCertificationLevel.FORM_FILLING_AND_ANNOTATIONS3Form fill-in, signing, and annotation changes are permitted after certification.

Usage Example

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