Etsy · JSON Structure

Open Api V3 Listing Property Value Structure

A representation of structured data values.

Type: object Properties: 6
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

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

Properties

property_id property_name scale_id scale_name value_ids values

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-property-value-structure.json",
  "name": "ListingPropertyValue",
  "description": "A representation of structured data values.",
  "type": "object",
  "properties": {
    "property_id": {
      "type": "int64",
      "description": "The numeric ID of the Property.",
      "minimum": 1,
      "example": 1
    },
    "property_name": {
      "type": "string",
      "description": "The name of the Property.",
      "nullable": true,
      "example": "Handmade Ceramic Mug"
    },
    "scale_id": {
      "type": "int64",
      "description": "The numeric ID of the scale (if any).",
      "nullable": true,
      "minimum": 1,
      "example": 1
    },
    "scale_name": {
      "type": "string",
      "description": "The label used to describe the chosen scale (if any).",
      "nullable": true,
      "example": "Handmade Ceramic Mug"
    },
    "value_ids": {
      "type": "array",
      "description": "The numeric IDs of the Property values",
      "items": {
        "type": "int64",
        "minimum": 1
      }
    },
    "values": {
      "type": "array",
      "description": "The Property values",
      "items": {
        "type": "string"
      }
    }
  }
}