Avalara · Schema

BrazilTaxDetail

Taxes

Properties

Name Type Description
taxType string Brazilian tax type
taxBase number
taxRate number
taxAmount number
exemptAmount number
cstCode string
View JSON Schema on GitHub

JSON Schema

avalara-braziltaxdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrazilTaxDetail",
  "title": "BrazilTaxDetail",
  "type": "object",
  "properties": {
    "taxType": {
      "type": "string",
      "enum": [
        "ICMS",
        "ICMS_ST",
        "IPI",
        "PIS",
        "COFINS",
        "ISS",
        "CSLL",
        "IRRF",
        "INSS",
        "IOF"
      ],
      "description": "Brazilian tax type"
    },
    "taxBase": {
      "type": "number",
      "format": "double"
    },
    "taxRate": {
      "type": "number",
      "format": "double"
    },
    "taxAmount": {
      "type": "number",
      "format": "double"
    },
    "exemptAmount": {
      "type": "number",
      "format": "double"
    },
    "cstCode": {
      "type": "string"
    }
  }
}