eBay · Schema

ItemLocation

This type describes the physical location of an order.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
countryCode string The two-letter ISO 3166 code representing the country of the address. For implementation hel
location string Indicates the geographical location of the item (along with the value in the countryCode field). This field provides city, province, state, or similar information.
postalCode string The postal code of the address.
View JSON Schema on GitHub

JSON Schema

ebay-itemlocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemLocation",
  "title": "ItemLocation",
  "type": "object",
  "properties": {
    "countryCode": {
      "type": "string",
      "description": "The two-letter <a href=\"https://www.iso.org/iso-3166-country-codes.html \" title=\"https://www.iso.org \" target=\"_blank\">ISO 3166</a> code representing the country of the address. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/sell/fulfillment/types/ba:CountryCodeEnum'>eBay API documentation</a>"
    },
    "location": {
      "type": "string",
      "description": "Indicates the geographical location of the item (along with the value in the <strong>countryCode</strong> field). This field provides city, province, state, or similar information."
    },
    "postalCode": {
      "type": "string",
      "description": "The postal code of the address."
    }
  },
  "description": "This type describes the physical location of an order."
}