Avalara · Schema

SharedContact

Taxes

Properties

Name Type Description
contactId string
firstName string
lastName string
email string
phone string
title string
isPrimary boolean
View JSON Schema on GitHub

JSON Schema

avalara-sharedcontact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharedContact",
  "title": "SharedContact",
  "type": "object",
  "properties": {
    "contactId": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "isPrimary": {
      "type": "boolean"
    }
  }
}