UiPath · JSON Structure

Document Understanding Extraction Result Structure

Result of an asynchronous extraction job

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

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

Properties

requestId status result

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-extraction-result-structure.json",
  "name": "ExtractionResult",
  "description": "Result of an asynchronous extraction job",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique identifier of the extraction job",
      "example": "abc123"
    },
    "status": {
      "type": "string",
      "enum": [
        "NotStarted",
        "Running",
        "Failed",
        "Succeeded"
      ],
      "description": "Current status of the extraction job",
      "example": "NotStarted"
    },
    "result": {
      "type": "object",
      "description": "Extraction output, populated when status is Succeeded",
      "properties": {
        "documentId": {
          "type": "string",
          "description": "Document ID from which data was extracted"
        },
        "extractionResult": {
          "$ref": "#/components/schemas/ExtractionResultData"
        }
      },
      "example": "example-value"
    }
  }
}