UiPath · JSON Structure

Automation Hub Automation Structure

An automation idea or project in the Automation Hub pipeline

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

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

Properties

id name description phase status submittedBy submittedDate lastModified estimatedBenefit tags

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-automation-structure.json",
  "name": "Automation",
  "description": "An automation idea or project in the Automation Hub pipeline",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique integer identifier of the automation",
      "example": 12345
    },
    "name": {
      "type": "string",
      "description": "Display name of the automation idea",
      "example": "Example Name"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the automation idea and its business value",
      "example": "Example description for this resource."
    },
    "phase": {
      "type": "string",
      "enum": [
        "Idea",
        "Assessment",
        "Analysis",
        "Development",
        "Testing",
        "Production",
        "OnHold",
        "Rejected"
      ],
      "description": "Current phase of the automation in the pipeline",
      "example": "Idea"
    },
    "status": {
      "type": "string",
      "description": "Current status within the active phase",
      "example": "Active"
    },
    "submittedBy": {
      "type": "string",
      "description": "Name of the user who submitted the automation idea",
      "example": "example-value"
    },
    "submittedDate": {
      "type": "datetime",
      "description": "ISO 8601 timestamp when the idea was submitted",
      "example": "2026-01-15T10:30:00Z"
    },
    "lastModified": {
      "type": "datetime",
      "description": "ISO 8601 timestamp of the last modification",
      "example": "2026-01-15T10:30:00Z"
    },
    "estimatedBenefit": {
      "$ref": "#/components/schemas/BenefitData"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags associated with the automation for categorization",
      "example": []
    }
  }
}