{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ShopReceipts", "description": "The receipts for a specific Shop.", "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-shop-receipts-schema.json", "type": "object", "properties": { "count": { "type": "integer", "description": "The number of Shop Receipts found.", "example": 1 }, "results": { "type": "array", "description": "List of Shop Receipt resources found, with all Shop Receipt fields for each resource.", "items": { "description": "List of Shop Receipt resources found, with all Shop Receipt fields for each resource.", "oneOf": [ { "$ref": "#/components/schemas/ShopReceipt" } ] } } } }