Avalara · Schema

TaxDeterminationLine

Taxes

Properties

Name Type Description
lineNumber string
productCode string
taxes array
totalTax number
View JSON Schema on GitHub

JSON Schema

avalara-taxdeterminationline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxDeterminationLine",
  "title": "TaxDeterminationLine",
  "type": "object",
  "properties": {
    "lineNumber": {
      "type": "string"
    },
    "productCode": {
      "type": "string"
    },
    "taxes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExciseTaxDetail"
      }
    },
    "totalTax": {
      "type": "number",
      "format": "double"
    }
  }
}