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