{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/document-understanding-digitization-request-structure.json", "name": "DigitizationRequest", "description": "Request payload for digitizing a document", "type": "object", "required": [ "documentId" ], "properties": { "documentId": { "type": "string", "description": "Reference identifier for the document. This can be a file path or a document reference key used by UiPath activities.", "example": "abc123" }, "contentType": { "type": "string", "enum": [ "image/jpeg", "image/png", "application/pdf", "image/tiff" ], "description": "MIME type of the document being submitted", "example": "image/jpeg" }, "documentBase64": { "type": "string", "description": "Base64-encoded document content when submitting inline", "example": "example-value" } } }