UiPath · Schema

ExtractionResultData

Structured extraction result containing field values and confidence scores

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
ResultsVersion integer Version of the extraction results format
DocumentId string Document identifier of the extracted document
Fields array List of extracted field values
View JSON Schema on GitHub

JSON Schema

document-understanding-extraction-result-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/document-understanding-extraction-result-data-schema.json",
  "title": "ExtractionResultData",
  "description": "Structured extraction result containing field values and confidence scores",
  "type": "object",
  "properties": {
    "ResultsVersion": {
      "type": "integer",
      "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": []
    }
  }
}