Avalara · Schema

BusinessEntity

Taxes

Properties

Name Type Description
entityId string
entityName string
entityType string
federalIdNumber string Federal EIN
address object
isActive boolean
View JSON Schema on GitHub

JSON Schema

avalara-businessentity-schema.json Raw ↑
{
  "$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"
    }
  }
}