Properties
| Name | Type | Description |
|---|---|---|
| entityId | string | |
| entityName | string | |
| entityType | string | |
| federalIdNumber | string | Federal EIN |
| address | object | |
| isActive | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BusinessEntity",
"title": "BusinessEntity",
"type": "object",
"properties": {
"entityId": {
"type": "string"
},
"entityName": {
"type": "string"
},
"entityType": {
"type": "string"
},
"federalIdNumber": {
"type": "string",
"description": "Federal EIN"
},
"address": {
"$ref": "#/components/schemas/ExciseAddress"
},
"isActive": {
"type": "boolean"
}
}
}