{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListUsersResponse", "title": "ListUsersResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/User" }, "description": "List of users." }, "totalCount": { "type": "integer", "description": "Total number of users matching the query." }, "paging": { "type": "object", "properties": { "next": { "type": "string", "description": "URL for the next page of results." }, "first": { "type": "string", "description": "URL for the first page." } } }, "took": { "type": "number", "description": "Time taken in seconds." }, "requestId": { "type": "string", "description": "Unique identifier for the request." } } }