Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| companyId | integer | |
| itemCode | string | Unique code for this item |
| taxCode | string | Avalara tax code for this item |
| description | string | |
| category | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ItemModel",
"title": "ItemModel",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"companyId": {
"type": "integer"
},
"itemCode": {
"type": "string",
"description": "Unique code for this item"
},
"taxCode": {
"type": "string",
"description": "Avalara tax code for this item"
},
"description": {
"type": "string"
},
"category": {
"type": "string"
}
}
}