sempdf v1.9.1Interfaces
Interface: VeraPdfValidateResult
sempdf / VeraPdfValidateResult
Defined in: src/internal/verapdf-validate.ts:36
Result of validateWithVeraPdf.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
available | readonly | boolean | Whether a veraPDF executable was found and ran successfully. | src/internal/verapdf-validate.ts:40 |
compliant | readonly | boolean | undefined | Whether the document is compliant. true/false when veraPDF ran; undefined for the custom fallback, which cannot prove conformance. | src/internal/verapdf-validate.ts:45 |
flavour? | readonly | string | The veraPDF flavour that was used, when known. | src/internal/verapdf-validate.ts:47 |
issues | readonly | readonly PdfComplianceIssue[] | Compliance issues, normalized to PdfComplianceIssue. | src/internal/verapdf-validate.ts:49 |
raw? | readonly | unknown | Raw parsed veraPDF JSON report, when veraPDF ran. | src/internal/verapdf-validate.ts:51 |
source | readonly | "custom" | "verapdf" | Which checker produced issues. | src/internal/verapdf-validate.ts:38 |