UiPath · Schema

GroupLicenseAllocation

License allocation rule for a user group

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
groupId string Unique identifier of the group this allocation applies to
userLicenses array
View JSON Schema on GitHub

JSON Schema

platform-management-group-license-allocation-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-license-allocation-schema.json",
  "title": "GroupLicenseAllocation",
  "description": "License allocation rule for a user group",
  "type": "object",
  "properties": {
    "groupId": {
      "type": "string",
      "description": "Unique identifier of the group this allocation applies to",
      "example": "abc123"
    },
    "userLicenses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LicenseAllocationEntry"
      },
      "example": []
    }
  }
}