eBay · Schema

VatDetail

The type the defines the fields for the VAT (value add tax) information.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
issuingCountry string The two-letter ISO 3166 standard of the country issuing the seller's VAT (value added tax) ID. VAT is a tax added by some
vatId string The seller's VAT (value added tax) ID. VAT is a tax added by some European countries.
View JSON Schema on GitHub

JSON Schema

ebay-vatdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VatDetail",
  "title": "VatDetail",
  "type": "object",
  "properties": {
    "issuingCountry": {
      "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 issuing the seller's VAT (value added tax) ID. VAT is a tax added by some European countries. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/buy/browse/types/ba:CountryCodeEnum'>eBay API documentation</a>"
    },
    "vatId": {
      "type": "string",
      "description": "The seller's VAT (value added tax) ID. VAT is a tax added by some European countries."
    }
  },
  "description": "The type the defines the fields for the VAT (value add tax) information."
}