UiPath · Schema

PhaseCount

Count of automations in a specific pipeline phase

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
phase string Name of the pipeline phase
count integer Number of automations in this phase
View JSON Schema on GitHub

JSON Schema

automation-hub-phase-count-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-phase-count-schema.json",
  "title": "PhaseCount",
  "description": "Count of automations in a specific pipeline phase",
  "type": "object",
  "properties": {
    "phase": {
      "type": "string",
      "description": "Name of the pipeline phase",
      "example": "example-value"
    },
    "count": {
      "type": "integer",
      "description": "Number of automations in this phase",
      "example": 42
    }
  }
}