UiPath · JSON Structure

Automation Hub Update Automation Request Structure

Request payload for partially updating an automation record

Type: object Properties: 4
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

UpdateAutomationRequest is a JSON Structure definition published by UiPath, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

phase status description estimatedBenefit

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/automation-hub-update-automation-request-structure.json",
  "name": "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"
    }
  }
}