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

Specifies the conformance level a PDF document is validated against.

from nutrient_sdk import PdfValidationConformance

Values

NameValueDescription
PdfValidationConformance.AUTO0The document is validated against the conformance level it claims in its metadata.
PdfValidationConformance.PDF_A1A1The PDF/A-1a conformance level.
PdfValidationConformance.PDF_A1B2The PDF/A-1b conformance level.
PdfValidationConformance.PDF_A2A3The PDF/A-2a conformance level.
PdfValidationConformance.PDF_A2U4The PDF/A-2u conformance level.
PdfValidationConformance.PDF_A2B5The PDF/A-2b conformance level.
PdfValidationConformance.PDF_A3A6The PDF/A-3a conformance level.
PdfValidationConformance.PDF_A3U7The PDF/A-3u conformance level.
PdfValidationConformance.PDF_A3B8The PDF/A-3b conformance level.
PdfValidationConformance.PDF_A49The PDF/A-4 conformance level.
PdfValidationConformance.PDF_A4E10The PDF/A-4e conformance level.
PdfValidationConformance.PDF_A4F11The PDF/A-4f conformance level.
PdfValidationConformance.PDF_UA112The PDF/UA-1 conformance level.

Usage Example

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