{ "$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" } } }