Avalara · Schema

TaxCodeModel

Taxes

Properties

Name Type Description
id integer
companyId integer
taxCode string
taxCodeTypeId string
description string
isPhysical boolean
isActive boolean
View JSON Schema on GitHub

JSON Schema

avalara-taxcodemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxCodeModel",
  "title": "TaxCodeModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "companyId": {
      "type": "integer"
    },
    "taxCode": {
      "type": "string"
    },
    "taxCodeTypeId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "isPhysical": {
      "type": "boolean"
    },
    "isActive": {
      "type": "boolean"
    }
  }
}