UiPath · Schema

AppInventoryListResponse

Response containing application inventory entries

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of application inventory entries
applications array
View JSON Schema on GitHub

JSON Schema

automation-hub-app-inventory-list-response-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/automation-hub-app-inventory-list-response-schema.json",
  "title": "AppInventoryListResponse",
  "description": "Response containing application inventory entries",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of application inventory entries",
      "example": 42
    },
    "applications": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Application"
      },
      "example": []
    }
  }
}