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

Represents the outcome of a PDF conformance validation run performed by PdfValidator.

from nutrient_sdk import PdfValidationResult

Construction

PdfValidationResult cannot be instantiated directly. Obtain instances through static factory methods or via other SDK classes.

Properties

is_valid

@property
def is_valid(self) -> bool

Indicates whether the document conforms to the conformance level it was validated against.

Type: bool

Read-only property.


report

@property
def report(self) -> str

The detailed validation report.

Type: str

Read-only property.


validated_conformance

@property
def validated_conformance(self) -> PdfValidationConformance

The conformance level the document was validated against.

Type: PdfValidationConformance

Read-only property.