{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExtensiveCallsResponse", "title": "ExtensiveCallsResponse", "type": "object", "properties": { "requestId": { "type": "string", "description": "A unique identifier for the request." }, "records": { "type": "object", "properties": { "totalRecords": { "type": "integer", "description": "Total number of matching records." }, "currentPageSize": { "type": "integer", "description": "Number of records in the current page." }, "cursor": { "type": "string", "description": "Cursor for retrieving the next page." } } }, "calls": { "type": "array", "items": { "$ref": "#/components/schemas/DetailedCall" }, "description": "List of detailed call objects." } } }