UiPath · JSON Structure

Platform Management Group Structure

A user group in the UiPath organization

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

Group 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

id name type userCount

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/platform-management-group-structure.json",
  "name": "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": "int32",
      "description": "Number of members currently in the group",
      "example": 42
    }
  }
}