Etsy · Schema

ListingVariationImage

A representation of the associations of variations and images on a listing.

MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

Properties

Name Type Description
property_id integer The numeric ID of the Property.
value_id integer The numeric ID of the Value.
value string The string value of the property.
image_id integer The numeric ID of the Image.
View JSON Schema on GitHub

JSON Schema

open-api-v3-listing-variation-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListingVariationImage",
  "description": "A representation of the associations of variations and images on a listing.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-listing-variation-image-schema.json",
  "type": "object",
  "properties": {
    "property_id": {
      "type": "integer",
      "description": "The numeric ID of the Property.",
      "format": "int64",
      "minimum": 1,
      "example": 1
    },
    "value_id": {
      "type": "integer",
      "description": "The numeric ID of the Value.",
      "format": "int64",
      "minimum": 1,
      "example": 1
    },
    "value": {
      "type": "string",
      "description": "The string value of the property.",
      "nullable": true,
      "example": "example string"
    },
    "image_id": {
      "type": "integer",
      "description": "The numeric ID of the Image.",
      "format": "int64",
      "minimum": 1,
      "example": 1
    }
  }
}