eBay · Schema

AvailabilityWithAll

This type is used to specify the quantity of the inventory items that are available for purchase if the items will be shipped to the buyer, and the quantity of the inventory items that are available for In-Store Pickup at one or more of the merchant's physical stores.

In-Store Pickup is only available to large merchants selling on the US, UK, Germany, and Australia sites.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
pickupAtLocationAvailability array This container consists of an array of one or more of the merchant's physical stores where the inventory item is available for in-store pickup.

The store ID, the quantity available, and the ful
shipToLocationAvailability object This container specifies the quantity of the inventory items that are available for a standard purchase, where the item is shipped to the buyer.
View JSON Schema on GitHub

JSON Schema

ebay-availabilitywithall-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailabilityWithAll",
  "title": "AvailabilityWithAll",
  "type": "object",
  "properties": {
    "pickupAtLocationAvailability": {
      "type": "array",
      "description": "This container consists of an array of one or more of the merchant's physical stores where the inventory item is available for in-store pickup.<br><br>The store ID, the quantity available, and the fulfillment time (how soon the item will be ready for pickup after the order occurs) are all returned in this container.",
      "items": {
        "$ref": "#/components/schemas/PickupAtLocationAvailability"
      }
    },
    "shipToLocationAvailability": {
      "description": "This container specifies the quantity of the inventory items that are available for a standard purchase, where the item is shipped to the buyer.",
      "$ref": "#/components/schemas/ShipToLocationAvailabilityWithAll"
    }
  },
  "description": "This type is used to specify the quantity of the inventory items that are available for purchase if the items will be shipped to the buyer, and the quantity of the inventory items that are available for In-Store Pickup at one or more of the merchant's physical stores.<br><br>In-Store Pickup is only available to large merchants selling on the US, UK, Germany, and Australia sites."
}