Abstract API · JSON Structure

Vat Validation Vat Rates Response Structure

VATRatesResponse schema from Abstract API vat-validation

Type: object Properties: 6
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

VATRatesResponse is a JSON Structure definition published by Abstract API, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

country_code country_name standard_rate reduced_rates super_reduced_rate parking_rate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/vat-validation-vat-rates-response-structure.json",
  "name": "VATRatesResponse",
  "description": "VATRatesResponse schema from Abstract API vat-validation",
  "type": "object",
  "properties": {
    "country_code": {
      "type": "string",
      "example": "DE"
    },
    "country_name": {
      "type": "string",
      "example": "Germany"
    },
    "standard_rate": {
      "type": "double",
      "description": "Standard VAT rate percentage",
      "example": 19
    },
    "reduced_rates": {
      "type": "array",
      "items": {
        "type": "double"
      },
      "description": "Reduced VAT rate percentages",
      "example": [
        7
      ]
    },
    "super_reduced_rate": {
      "type": "double",
      "nullable": true,
      "description": "Super reduced VAT rate if applicable",
      "example": null
    },
    "parking_rate": {
      "type": "double",
      "nullable": true,
      "description": "Parking VAT rate if applicable",
      "example": null
    }
  }
}