Abstract API · Schema

VATCalculateResponse

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

Properties

Name Type Description
amount_excl_vat number Amount excluding VAT
vat_amount number VAT amount
amount_incl_vat number Amount including VAT
vat_category string VAT category used
vat_rate number VAT rate applied
country_code string
country_name string
View JSON Schema on GitHub

JSON Schema

abstract-api-vatcalculateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VATCalculateResponse",
  "title": "VATCalculateResponse",
  "type": "object",
  "properties": {
    "amount_excl_vat": {
      "type": "number",
      "description": "Amount excluding VAT",
      "example": 100
    },
    "vat_amount": {
      "type": "number",
      "description": "VAT amount",
      "example": 19
    },
    "amount_incl_vat": {
      "type": "number",
      "description": "Amount including VAT",
      "example": 119
    },
    "vat_category": {
      "type": "string",
      "description": "VAT category used",
      "example": "standard"
    },
    "vat_rate": {
      "type": "number",
      "description": "VAT rate applied",
      "example": 19
    },
    "country_code": {
      "type": "string",
      "example": "DE"
    },
    "country_name": {
      "type": "string",
      "example": "Germany"
    }
  }
}