{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-structure/zendit-api-transaction-list-structure.json", "name": "TransactionList", "description": "Paginated transaction list.", "type": "object", "properties": { "list": { "type": "array", "items": { "$ref": "#/components/schemas/Transaction" }, "example": [ {} ] }, "offset": { "type": "int32", "example": 100 }, "limit": { "type": "int32", "example": 100 }, "total": { "type": "int32", "example": 100 } } }