{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/automation-hub-user-list-response-structure.json", "name": "UserListResponse", "description": "Paginated response containing user records", "type": "object", "properties": { "totalCount": { "type": "int32", "description": "Total number of users", "example": 42 }, "users": { "type": "array", "items": { "$ref": "#/components/schemas/User" }, "example": [] } } }