{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EstimatedAvailability", "title": "EstimatedAvailability", "type": "object", "properties": { "availabilityThreshold": { "type": "integer", "description": "This field is return only when the seller sets their 'display item quantity' preference to Display \"More than 10 available\" in your listing (if applicable). The value of this field will be \"10\", which is the threshold value.

Code so that your app gracefully handles any future changes to this value.", "format": "int32" }, "availabilityThresholdType": { "type": "string", "description": " This field is return only when the seller sets their Display Item Quantity preference to Display \"More than 10 available\" in your listing (if applicable). The value of this field will be MORE_THAN. This indicates that the seller has more than the 'quantity display preference', which is 10, in stock for this item.

The following are the display item quantity preferences the seller can set.

Code so that your app gracefully handles any future changes to these preferences. For implementation help, refer to eBay API documentation" }, "deliveryOptions": { "type": "array", "description": "An array of available delivery options.

Valid Values: SHIP_TO_HOME, SELLER_ARRANGED_LOCAL_PICKUP, IN_STORE_PICKUP, PICKUP_DROP_OFF, or DIGITAL_DELIVERY

Code so that your app gracefully handles any future changes to this list. ", "items": { "type": "string", "description": " For implementation help, refer to eBay API documentation" } }, "estimatedAvailabilityStatus": { "type": "string", "description": "An enumeration value representing the inventory status of this item.

Note: Be sure to review the itemEndDate field to determine whether the item is available for purchase.

Valid Values: IN_STOCK, LIMITED_STOCK, or OUT_OF_STOCK

Code so that your app gracefully handles any future changes to this list. For implementation help, refer to eBay API documentation" }, "estimatedAvailableQuantity": { "type": "integer", "description": "The estimated number of this item that are available for purchase. Because the quantity of an item can change several times within a second, it is impossible to return the exact quantity. So instead of returning quantity, the estimated availability of the item is returned.", "format": "int32" }, "estimatedSoldQuantity": { "type": "integer", "description": "The estimated number of this item that have been sold.", "format": "int32" } }, "description": "The type that defines the fields for the estimated item availability information." }