Abstract API · Schema

VATRatesResponse

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
country_code string
country_name string
standard_rate number Standard VAT rate percentage
reduced_rates array Reduced VAT rate percentages
super_reduced_rate number Super reduced VAT rate if applicable
parking_rate number Parking VAT rate if applicable
View JSON Schema on GitHub

JSON Schema

abstract-api-vatratesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VATRatesResponse",
  "title": "VATRatesResponse",
  "type": "object",
  "properties": {
    "country_code": {
      "type": "string",
      "example": "DE"
    },
    "country_name": {
      "type": "string",
      "example": "Germany"
    },
    "standard_rate": {
      "type": "number",
      "description": "Standard VAT rate percentage",
      "example": 19
    },
    "reduced_rates": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "Reduced VAT rate percentages",
      "example": [
        7
      ]
    },
    "super_reduced_rate": {
      "type": "number",
      "nullable": true,
      "description": "Super reduced VAT rate if applicable",
      "example": null
    },
    "parking_rate": {
      "type": "number",
      "nullable": true,
      "description": "Parking VAT rate if applicable",
      "example": null
    }
  }
}