eBay · Schema

ShipToLocationAvailability

This type is used to specify the total 'ship-to-home' quantity of the inventory item that will be available for purchase through one or more published offers.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
availabilityDistributions array This container is used to set the available quantity of the inventory item at one or more warehouse locations.

This container will be returned if available quantity is set for one or more inve
quantity integer This container is used to set the total 'ship-to-home' quantity of the inventory item that will be available for purchase through one or more published offers. This container is not immediately requir
View JSON Schema on GitHub

JSON Schema

ebay-shiptolocationavailability-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipToLocationAvailability",
  "title": "ShipToLocationAvailability",
  "type": "object",
  "properties": {
    "availabilityDistributions": {
      "type": "array",
      "description": "This container is used to set the available quantity of the inventory item at one or more warehouse locations.<br><br> This container will be returned if available quantity is set for one or more inventory locations.",
      "items": {
        "$ref": "#/components/schemas/AvailabilityDistribution"
      }
    },
    "quantity": {
      "type": "integer",
      "description": "This container is used to set the total 'ship-to-home' quantity of the inventory item that will be available for purchase through one or more published offers. This container is not immediately required, but 'ship-to-home' quantity must be set before an offer of the inventory item can be published.<br><br>If an existing inventory item is being updated, and the 'ship-to-home' quantity already exists for the inventory item record, this container should be included again, even if the value is not changing, or the available quantity data will be lost.",
      "format": "int32"
    }
  },
  "description": "This type is used to specify the total 'ship-to-home' quantity of the inventory item that will be available for purchase through one or more published offers."
}