{
"$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
}
}
}