Avalara · Schema

Registration

Taxes

Properties

Name Type Description
registrationId string
partnerId string
companyName string
status string
product string Avalara product registered for
accountId string
activationDate string
expirationDate string
createdDate string
View JSON Schema on GitHub

JSON Schema

avalara-registration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Registration",
  "title": "Registration",
  "type": "object",
  "properties": {
    "registrationId": {
      "type": "string"
    },
    "partnerId": {
      "type": "string"
    },
    "companyName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Active",
        "Expired",
        "Cancelled"
      ]
    },
    "product": {
      "type": "string",
      "description": "Avalara product registered for"
    },
    "accountId": {
      "type": "string"
    },
    "activationDate": {
      "type": "string",
      "format": "date-time"
    },
    "expirationDate": {
      "type": "string",
      "format": "date-time"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}