Avalara · JSON Structure

Business Account Registration Structure

AccountRegistration schema from Avalara API

Type: object Properties: 7 Required: 2
Taxes

AccountRegistration is a JSON Structure definition published by Avalara, describing 7 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

companyName firstName lastName email phoneNumber address partnerCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-structure/business-account-registration-structure.json",
  "description": "AccountRegistration schema from Avalara API",
  "type": "object",
  "required": [
    "companyName",
    "email"
  ],
  "properties": {
    "companyName": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phoneNumber": {
      "type": "string"
    },
    "address": {
      "type": "object",
      "properties": {
        "line1": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "postalCode": {
          "type": "string"
        },
        "country": {
          "type": "string"
        }
      }
    },
    "partnerCode": {
      "type": "string"
    }
  },
  "name": "AccountRegistration"
}