Abstract API · JSON Structure

Vat Validation Vat Calculate Response Structure

VATCalculateResponse schema from Abstract API vat-validation

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

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

Properties

amount_excl_vat vat_amount amount_incl_vat vat_category vat_rate country_code country_name

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-calculate-response-structure.json",
  "name": "VATCalculateResponse",
  "description": "VATCalculateResponse schema from Abstract API vat-validation",
  "type": "object",
  "properties": {
    "amount_excl_vat": {
      "type": "double",
      "description": "Amount excluding VAT",
      "example": 100
    },
    "vat_amount": {
      "type": "double",
      "description": "VAT amount",
      "example": 19
    },
    "amount_incl_vat": {
      "type": "double",
      "description": "Amount including VAT",
      "example": 119
    },
    "vat_category": {
      "type": "string",
      "description": "VAT category used",
      "example": "standard"
    },
    "vat_rate": {
      "type": "double",
      "description": "VAT rate applied",
      "example": 19
    },
    "country_code": {
      "type": "string",
      "example": "DE"
    },
    "country_name": {
      "type": "string",
      "example": "Germany"
    }
  }
}