Avalara · Schema

MultiDocumentLineItemModel

Taxes

Properties

Name Type Description
companyCode string
reportingLocationCode string
number string
quantity number
amount number
taxCode string
addresses object
View JSON Schema on GitHub

JSON Schema

avalara-multidocumentlineitemmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MultiDocumentLineItemModel",
  "title": "MultiDocumentLineItemModel",
  "type": "object",
  "properties": {
    "companyCode": {
      "type": "string"
    },
    "reportingLocationCode": {
      "type": "string"
    },
    "number": {
      "type": "string"
    },
    "quantity": {
      "type": "number",
      "format": "double"
    },
    "amount": {
      "type": "number",
      "format": "double"
    },
    "taxCode": {
      "type": "string"
    },
    "addresses": {
      "type": "object",
      "properties": {
        "shipFrom": {
          "$ref": "#/components/schemas/AddressInfo"
        },
        "shipTo": {
          "$ref": "#/components/schemas/AddressInfo"
        }
      }
    }
  }
}