UiPath · Schema

Classifier

A model that classifies documents into predefined document types

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
id string Unique identifier of the classifier
name string Display name of the classifier
classifierType string Technology category of the classifier model
documentTypes array List of document type labels this classifier can identify
View JSON Schema on GitHub

JSON Schema

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