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": "#/components/schemas/PayerCompany",
"title": "PayerCompany",
"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"
}
}
}