UiPath · Schema

ClassificationResultItem

Classification result for a specific document or page range

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
classifierId string Identifier of the classifier that produced this result
documentTypeId string Identified document type identifier
confidence number Confidence score of the classification result (0.0 to 1.0)
startPage integer First page of the classified document section
endPage integer Last page of the classified document section
View JSON Schema on GitHub

JSON Schema

document-understanding-classification-result-item-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-classification-result-item-schema.json",
  "title": "ClassificationResultItem",
  "description": "Classification result for a specific document or page range",
  "type": "object",
  "properties": {
    "classifierId": {
      "type": "string",
      "description": "Identifier of the classifier that produced this result",
      "example": "abc123"
    },
    "documentTypeId": {
      "type": "string",
      "description": "Identified document type identifier",
      "example": "abc123"
    },
    "confidence": {
      "type": "number",
      "format": "float",
      "minimum": 0,
      "maximum": 1,
      "description": "Confidence score of the classification result (0.0 to 1.0)",
      "example": 1.0
    },
    "startPage": {
      "type": "integer",
      "description": "First page of the classified document section",
      "example": 1
    },
    "endPage": {
      "type": "integer",
      "description": "Last page of the classified document section",
      "example": 1
    }
  }
}