Avalara · Schema
CompanyInitializationModel
CompanyInitializationModel schema from Avalara API
Taxes
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| companyCode | string | |
| taxpayerIdNumber | string | |
| line1 | string | |
| line2 | string | |
| line3 | string | |
| city | string | |
| region | string | |
| postalCode | string | |
| country | string | |
| firstName | string | |
| lastName | string | |
| title | string | |
| string | ||
| phoneNumber | string | |
| mobileNumber | string |
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-company-initialization-model-schema.json",
"title": "CompanyInitializationModel",
"description": "CompanyInitializationModel schema from Avalara API",
"type": "object",
"required": [
"name",
"companyCode",
"taxpayerIdNumber",
"line1",
"city",
"region",
"postalCode",
"country"
],
"properties": {
"name": {
"type": "string"
},
"companyCode": {
"type": "string"
},
"taxpayerIdNumber": {
"type": "string"
},
"line1": {
"type": "string"
},
"line2": {
"type": "string"
},
"line3": {
"type": "string"
},
"city": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"title": {
"type": "string"
},
"email": {
"type": "string"
},
"phoneNumber": {
"type": "string"
},
"mobileNumber": {
"type": "string"
}
}
}