Etsy · JSON Structure

Open Api V3 Listing Images Structure

Represents a list of listing image resources, each of which contains the reference URLs and metadata for an image.

Type: object Properties: 2
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

ListingImages is a JSON Structure definition published by Etsy, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

count results

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-structure/open-api-v3-listing-images-structure.json",
  "name": "ListingImages",
  "description": "Represents a list of listing image resources, each of which contains the reference URLs and metadata for an image.",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "The number of results.",
      "minimum": 0,
      "example": 1
    },
    "results": {
      "type": "array",
      "description": "The list of requested resources.",
      "items": {
        "description": "The list of requested resources.",
        "oneOf": [
          {
            "$ref": "#/components/schemas/ListingImage"
          }
        ]
      }
    }
  }
}