Paginated offer list.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OfferList", "description": "Paginated offer list.", "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-offer-list-schema.json", "type": "object", "properties": { "list": { "type": "array", "items": { "$ref": "#/components/schemas/Offer" }, "example": [ {} ] }, "offset": { "type": "integer", "example": 0 }, "limit": { "type": "integer", "example": 100 }, "total": { "type": "integer", "example": 1500 } } }