v1

latestOpenAPI 3.0.3MIT2026-07-22153276289.7 KB
Validation Results

Get list of all validation results

Returns the validation results of a document.

get/v3/validation_results

Query parameters

offsetinteger

The number of documents to skip before starting to collect the result set.

limitinteger
Example:20

The numbers of results to return.

documentstring required

Unique identifier for the document

Filter by document.

Response

All matching workspace memberships.

idinteger required

Validation Result's ID

annotationsinteger[] required

List of annotation ids that were validated

passedboolean nullable required

Whether the validation passed or not, null if the validation was not applicable

ruleSlugstring required

The kebab-case slug of the validation rule that was applied

messagestring required

Message explaining why the validation failed

documentstring required

Unique identifier for the document

Example response

[
  {
    "id": 1,
    "annotations": [
      1,
      2,
      3
    ],
    "passed": true,
    "ruleSlug": "supplier-name-is-alphanumeric",
    "message": "Expected 'ThisInputShouldMatch' to match regex pattern '[0-9]*"
  }
]