eBay · Schema

ShipToLocation

The type that defines the fields for the country and postal code of where an item is to be shipped.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
country string The two-letter ISO 3166 standard of the country for where the item is to be shipped. For implementation help, refer to
postalCode string The zip code (postal code) for where the item is to be shipped.
View JSON Schema on GitHub

JSON Schema

ebay-shiptolocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipToLocation",
  "title": "ShipToLocation",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "The two-letter <a href=\"https://www.iso.org/iso-3166-country-codes.html \" target=\"_blank\">ISO 3166</a> standard of the country for where the item is to be shipped. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/buy/browse/types/ba:CountryCodeEnum'>eBay API documentation</a>"
    },
    "postalCode": {
      "type": "string",
      "description": "The zip code (postal code) for where the item is to be shipped."
    }
  },
  "description": "The type that defines the fields for the country and postal code of where an item is to be shipped."
}