Avalara · Schema

InvoiceLine

Taxes

Properties

Name Type Description
lineNumber integer
itemCode string
description string
quantity number
unitPrice number
ncmCode string
cfopCode string
View JSON Schema on GitHub

JSON Schema

avalara-invoiceline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceLine",
  "title": "InvoiceLine",
  "type": "object",
  "properties": {
    "lineNumber": {
      "type": "integer"
    },
    "itemCode": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "quantity": {
      "type": "number",
      "format": "double"
    },
    "unitPrice": {
      "type": "number",
      "format": "double"
    },
    "ncmCode": {
      "type": "string"
    },
    "cfopCode": {
      "type": "string"
    }
  }
}