{ "$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 } } }