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": "#/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"
}
}
}