{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/orchestrator-o-data-user-collection-schema.json", "title": "ODataUserCollection", "description": "OData collection response containing users", "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "Id": { "type": "integer", "format": "int64", "description": "Unique user identifier" }, "UserName": { "type": "string", "description": "Username login identifier" }, "Name": { "type": "string", "description": "Display name of the user" }, "EmailAddress": { "type": "string", "format": "email", "description": "Email address of the user" }, "IsActive": { "type": "boolean", "description": "Whether the user account is active" } } }, "example": [] } } }