UiPath · Schema

DigitizationRequest

Request payload for digitizing a document

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
documentId string Reference identifier for the document. This can be a file path or a document reference key used by UiPath activities.
contentType string MIME type of the document being submitted
documentBase64 string Base64-encoded document content when submitting inline
View JSON Schema on GitHub

JSON Schema

document-understanding-digitization-request-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-digitization-request-schema.json",
  "title": "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"
    }
  }
}