{ "$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": [] } } }