{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/excise-business-entity-schema.json", "title": "BusinessEntity", "description": "BusinessEntity schema from Avalara API", "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" } } }