UiPath · Schema

BenefitData

Estimated cost-benefit analysis data for an automation idea

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
estimatedTimeSavingsPerYear number Estimated hours saved per year by automating this process
estimatedFTESavings number Full-time equivalent headcount savings from the automation
estimatedCostSavingsPerYear number Estimated monetary cost savings per year in the organization's currency
View JSON Schema on GitHub

JSON Schema

automation-hub-benefit-data-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/automation-hub-benefit-data-schema.json",
  "title": "BenefitData",
  "description": "Estimated cost-benefit analysis data for an automation idea",
  "type": "object",
  "properties": {
    "estimatedTimeSavingsPerYear": {
      "type": "number",
      "description": "Estimated hours saved per year by automating this process",
      "example": 1.0
    },
    "estimatedFTESavings": {
      "type": "number",
      "description": "Full-time equivalent headcount savings from the automation",
      "example": 1.0
    },
    "estimatedCostSavingsPerYear": {
      "type": "number",
      "description": "Estimated monetary cost savings per year in the organization's currency",
      "example": 1.0
    }
  }
}