UiPath · JSON Structure

Document Understanding Extraction Result Data Structure

Structured extraction result containing field values and confidence scores

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

ExtractionResultData 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

ResultsVersion DocumentId Fields

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-data-structure.json",
  "name": "ExtractionResultData",
  "description": "Structured extraction result containing field values and confidence scores",
  "type": "object",
  "properties": {
    "ResultsVersion": {
      "type": "int32",
      "description": "Version of the extraction results format",
      "example": "1.0.0"
    },
    "DocumentId": {
      "type": "string",
      "description": "Document identifier of the extracted document",
      "example": "abc123"
    },
    "Fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExtractedField"
      },
      "description": "List of extracted field values",
      "example": []
    }
  }
}