Avalara · Schema

Invoice

Invoice schema from Avalara API

Taxes

Properties

Name Type Description
doc string Document code
cmmt boolean Commit indicator
bill object
cust integer Customer type
date string Invoice date
itms array Line items on the invoice
View JSON Schema on GitHub

JSON Schema

communications-invoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/communications-invoice-schema.json",
  "title": "Invoice",
  "description": "Invoice schema from Avalara API",
  "type": "object",
  "properties": {
    "doc": {
      "type": "string",
      "description": "Document code"
    },
    "cmmt": {
      "type": "boolean",
      "description": "Commit indicator"
    },
    "bill": {
      "$ref": "#/components/schemas/Location"
    },
    "cust": {
      "type": "integer",
      "description": "Customer type"
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "Invoice date"
    },
    "itms": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LineItem"
      },
      "description": "Line items on the invoice"
    }
  }
}