Avalara · JSON Structure

E Invoicing Party Structure

Party schema from Avalara API

Type: object Properties: 4
Taxes

Party is a JSON Structure definition published by Avalara, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name identifier identifierScheme address

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/e-invoicing-party-structure.json",
  "description": "Party schema from Avalara API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "identifier": {
      "type": "string",
      "description": "Tax identification number"
    },
    "identifierScheme": {
      "type": "string",
      "description": "Identifier scheme (e.g., VAT)"
    },
    "address": {
      "type": "object",
      "properties": {
        "line1": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "postalCode": {
          "type": "string"
        },
        "countryCode": {
          "type": "string"
        }
      }
    }
  },
  "name": "Party"
}