Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| ein | string | Employer Identification Number |
| address | object | |
| contactName | string | |
| contactPhone | string | |
| contactEmail | 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/1099-w9-payer-company-schema.json",
"title": "PayerCompany",
"description": "PayerCompany schema from Avalara API",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"ein": {
"type": "string",
"description": "Employer Identification Number"
},
"address": {
"type": "object",
"properties": {
"line1": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"postalCode": {
"type": "string"
}
}
},
"contactName": {
"type": "string"
},
"contactPhone": {
"type": "string"
},
"contactEmail": {
"type": "string",
"format": "email"
}
}
}