{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/automation-hub-update-automation-request-schema.json", "title": "UpdateAutomationRequest", "description": "Request payload for partially updating an automation record", "type": "object", "properties": { "phase": { "type": "string", "enum": [ "Idea", "Assessment", "Analysis", "Development", "Testing", "Production", "OnHold", "Rejected" ], "description": "Updated pipeline phase for the automation", "example": "Idea" }, "status": { "type": "string", "description": "Updated status within the current phase", "example": "Active" }, "description": { "type": "string", "description": "Updated description of the automation", "example": "Example description for this resource." }, "estimatedBenefit": { "$ref": "#/components/schemas/BenefitData" } } }