UiPath · JSON Structure

Document Understanding Validation Request Structure

Request payload for validating document processing results

Type: object Properties: 3 Required: 1
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

ValidationRequest is a JSON Structure definition published by UiPath, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

documentId classificationResult extractionResult

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/document-understanding-validation-request-structure.json",
  "name": "ValidationRequest",
  "description": "Request payload for validating document processing results",
  "type": "object",
  "required": [
    "documentId"
  ],
  "properties": {
    "documentId": {
      "type": "string",
      "description": "Document ID of the document whose results are to be validated",
      "example": "abc123"
    },
    "classificationResult": {
      "$ref": "#/components/schemas/ClassificationResultItem"
    },
    "extractionResult": {
      "$ref": "#/components/schemas/ExtractionResultData"
    }
  }
}