---
title: "PdfValidationResult"
canonical_url: "https://www.nutrient.io/api/python/validation/pdf-validation-result/"
md_url: "https://www.nutrient.io/api/python/validation/pdf-validation-result.md"
last_updated: "2026-09-02T11:19:46.688Z"
description: "Represents the outcome of a PDF conformance validation run performed by `PdfValidator`."
---

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

```python

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

```python

@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

```python

@property
def report(self) -> str

```

The detailed validation report.

**Type:** `str`

*Read-only property.*

---

### validated_conformance

```python

@property
def validated_conformance(self) -> PdfValidationConformance

```

The conformance level the document was validated against.

**Type:** [`PdfValidationConformance`](/api/python/enums/pdf-validation-conformance/)

*Read-only property.*

---

---

## Related pages

- [All public classes import directly from the top-level package:](/api/python/validation.md)
- [Pdf Validator](/api/python/validation/pdf-validator.md)

