UiPath · JSON Structure

Document Understanding Classifier Structure

A model that classifies documents into predefined document types

Type: object Properties: 4
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Classifier is a JSON Structure definition published by UiPath, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name classifierType documentTypes

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-classifier-structure.json",
  "name": "Classifier",
  "description": "A model that classifies documents into predefined document types",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the classifier",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Display name of the classifier",
      "example": "Example Name"
    },
    "classifierType": {
      "type": "string",
      "enum": [
        "Specialized",
        "GenerativeAI",
        "KeywordBased"
      ],
      "description": "Technology category of the classifier model",
      "example": "Specialized"
    },
    "documentTypes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of document type labels this classifier can identify",
      "example": "Standard"
    }
  }
}