Etsy · JSON Structure

Open Api V3 Listing Inventory Product Offering Structure

A representation of an offering for a listing.

Type: object Properties: 6
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

ListingInventoryProductOffering 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

offering_id quantity is_enabled is_deleted price readiness_state_id

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-inventory-product-offering-structure.json",
  "name": "ListingInventoryProductOffering",
  "description": "A representation of an offering for a listing.",
  "type": "object",
  "properties": {
    "offering_id": {
      "type": "int64",
      "description": "The ID for the ProductOffering",
      "minimum": 1,
      "example": 1
    },
    "quantity": {
      "type": "int32",
      "description": "The quantity the ProductOffering",
      "minimum": 0,
      "example": 1
    },
    "is_enabled": {
      "type": "boolean",
      "description": "Whether or not the offering can be shown to buyers.",
      "example": true
    },
    "is_deleted": {
      "type": "boolean",
      "description": "Whether or not the offering has been deleted.",
      "example": true
    },
    "price": {
      "description": "Price data for this ProductOffering",
      "oneOf": [
        {
          "$ref": "#/components/schemas/Money"
        }
      ],
      "example": "example"
    },
    "readiness_state_id": {
      "type": "int64",
      "description": "Processing Profile for this ProductOffering",
      "nullable": true,
      "minimum": 1,
      "example": 1
    }
  }
}