Anrok · Schema

TaxAmountDue

The tax amount due in the smallest denomination of the currency (e.g. cents or pennies).

Sales TaxVATTax ComplianceSaaSFintechTax AutomationNexusE-Invoicing

Properties

Name Type Description
inclusive string The inclusive tax amount in the smallest denomination of the currency (e.g. cents or pennies).
exclusive string The exclusive tax amount in the smallest denomination of the currency (e.g. cents or pennies).
total string The total tax amount in the smallest denomination of the currency (e.g. cents or pennies).
View JSON Schema on GitHub

JSON Schema

tax-amount-due.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/tax-amount-due.json",
  "title": "TaxAmountDue",
  "description": "The tax amount due in the smallest denomination of the currency (e.g. cents or pennies).",
  "type": "object",
  "properties": {
    "inclusive": {
      "description": "The inclusive tax amount in the smallest denomination of the currency (e.g. cents or pennies).",
      "type": "string",
      "format": "Decimal",
      "example": "100.00"
    },
    "exclusive": {
      "description": "The exclusive tax amount in the smallest denomination of the currency (e.g. cents or pennies).",
      "type": "string",
      "format": "Decimal",
      "example": "10.00"
    },
    "total": {
      "description": "The total tax amount in the smallest denomination of the currency (e.g. cents or pennies).",
      "type": "string",
      "format": "Decimal",
      "example": "110.00"
    }
  }
}