UiPath · Schema

Group

A user group in the UiPath organization

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
id string Unique identifier of the group
name string Display name of the group
type string Type classification of the group
userCount integer Number of members currently in the group
View JSON Schema on GitHub

JSON Schema

platform-management-group-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/platform-management-group-schema.json",
  "title": "Group",
  "description": "A user group in the UiPath organization",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the group",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Display name of the group",
      "example": "Example Name"
    },
    "type": {
      "type": "string",
      "enum": [
        "Local",
        "DirectoryGroup",
        "RoboticsGroup"
      ],
      "description": "Type classification of the group",
      "example": "Local"
    },
    "userCount": {
      "type": "integer",
      "description": "Number of members currently in the group",
      "example": 42
    }
  }
}