Avalara · Schema

AccountRegistration

Taxes

Properties

Name Type Description
companyName string
firstName string
lastName string
email string
phoneNumber string
address object
partnerCode string
View JSON Schema on GitHub

JSON Schema

avalara-accountregistration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountRegistration",
  "title": "AccountRegistration",
  "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"
    }
  }
}