{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionsResponseEntity", "type": "object", "properties": { "total": { "type": "number", "description": "Total number of matching transactions" }, "results": { "description": "Paginated list of transactions", "type": "array", "items": { "$ref": "#/components/schemas/PnLTransactionEntity" } } }, "required": [ "total", "results" ] }