UiPath · JSON Structure

Document Understanding Classification Request Structure

Request payload for classifying a previously digitized document

Type: object Properties: 2 Required: 2
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

ClassificationRequest is a JSON Structure definition published by UiPath, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

documentId classifiersOptions

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-classification-request-structure.json",
  "name": "ClassificationRequest",
  "description": "Request payload for classifying a previously digitized document",
  "type": "object",
  "required": [
    "documentId",
    "classifiersOptions"
  ],
  "properties": {
    "documentId": {
      "type": "string",
      "description": "Document ID returned by the digitization endpoint",
      "example": "abc123"
    },
    "classifiersOptions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClassifierOption"
      },
      "description": "Classifiers to apply with their configuration options",
      "example": []
    }
  }
}