eBay · Schema

RegionalTakeBackPolicies

This type lists regional take-back policies to be used by an offer when it is published and converted to a listing.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
countryPolicies array The array of country-specific take-back policies to be used by an offer when it is published and converted to a listing.
View JSON Schema on GitHub

JSON Schema

ebay-regionaltakebackpolicies-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegionalTakeBackPolicies",
  "title": "RegionalTakeBackPolicies",
  "type": "object",
  "properties": {
    "countryPolicies": {
      "type": "array",
      "description": "The array of country-specific take-back policies to be used by an offer when it is published and converted to a listing.",
      "items": {
        "$ref": "#/components/schemas/CountryPolicy"
      }
    }
  },
  "description": "This type lists regional take-back policies to be used by an offer when it is published and converted to a listing."
}