UiPath · Schema

ExtractorOption

Configuration for applying a specific extractor

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
extractorId string Unique identifier of the extractor to apply
View JSON Schema on GitHub

JSON Schema

document-understanding-extractor-option-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-extractor-option-schema.json",
  "title": "ExtractorOption",
  "description": "Configuration for applying a specific extractor",
  "type": "object",
  "required": [
    "extractorId"
  ],
  "properties": {
    "extractorId": {
      "type": "string",
      "description": "Unique identifier of the extractor to apply",
      "example": "abc123"
    }
  }
}