{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionsV5Response", "type": "object", "properties": { "total": { "type": "number", "description": "Total number of transactions available" }, "resumeToken": { "type": "string", "description": "Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results." }, "limit": { "type": "number", "description": "Maximum number of results returned" }, "skip": { "type": "number", "description": "Number of results skipped for pagination" }, "results": { "description": "List of transactions", "type": "array", "items": { "$ref": "#/components/schemas/TransactionV5Response" } } }, "required": [ "total", "limit", "skip", "results" ] }