UiPath · Schema

LicenseAllocationEntry

A single license type allocation for a group

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
code string License product code identifier
totalCount integer Total number of licenses allocated to the group
usedCount integer Number of licenses currently consumed by group members
View JSON Schema on GitHub

JSON Schema

platform-management-license-allocation-entry-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-license-allocation-entry-schema.json",
  "title": "LicenseAllocationEntry",
  "description": "A single license type allocation for a group",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "License product code identifier",
      "example": "example-value"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of licenses allocated to the group",
      "example": 42
    },
    "usedCount": {
      "type": "integer",
      "description": "Number of licenses currently consumed by group members",
      "example": 42
    }
  }
}