UiPath · Schema

CreateAutomationIdeaRequest

Request payload for creating a new automation idea

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
name string Display name of the automation idea
description string Detailed description of the automation opportunity
estimatedBenefit object
tags array Tags for categorizing the automation idea
View JSON Schema on GitHub

JSON Schema

automation-hub-create-automation-idea-request-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-create-automation-idea-request-schema.json",
  "title": "CreateAutomationIdeaRequest",
  "description": "Request payload for creating a new automation idea",
  "type": "object",
  "required": [
    "name",
    "description"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the automation idea",
      "maxLength": 256,
      "example": "Example Name"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the automation opportunity",
      "example": "Example description for this resource."
    },
    "estimatedBenefit": {
      "$ref": "#/components/schemas/BenefitData"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags for categorizing the automation idea",
      "example": []
    }
  }
}