Etsy · Schema

ShopReceipts

The receipts for a specific Shop.

MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

Properties

Name Type Description
count integer The number of Shop Receipts found.
results array List of Shop Receipt resources found, with all Shop Receipt fields for each resource.
View JSON Schema on GitHub

JSON Schema

open-api-v3-shop-receipts-schema.json Raw ↑
{
  "$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"
          }
        ]
      }
    }
  }
}