{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConsumerPurchaseResponse", "title": "ConsumerPurchaseResponse", "type": "object", "description": "Consumer purchase data response", "properties": { "data": { "type": "array", "description": "Array of consumer purchase records", "items": { "$ref": "#/components/schemas/ConsumerPurchaseRecord" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }