Paginated list of payments
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentList", "title": "PaymentList", "type": "object", "description": "Paginated list of payments", "properties": { "payments": { "type": "array", "items": { "$ref": "#/components/schemas/PaymentDetail" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }