Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| companyId | integer | |
| taxCode | string | |
| taxCodeTypeId | string | |
| description | string | |
| isPhysical | boolean | |
| isActive | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-tax-code-model-schema.json",
"title": "TaxCodeModel",
"description": "TaxCodeModel schema from Avalara API",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"companyId": {
"type": "integer"
},
"taxCode": {
"type": "string"
},
"taxCodeTypeId": {
"type": "string"
},
"description": {
"type": "string"
},
"isPhysical": {
"type": "boolean"
},
"isActive": {
"type": "boolean"
}
}
}