Intuit · Schema

InvoiceLine

A line item on an invoice

AccountingCustom FieldsFinancialFinancial ServicesInvoicingPaymentsPayrollProject ManagementSales TaxSmall BusinessTaxTax PreparationTaxesTime TrackingFortune 1000

Properties

Name Type Description
Id string The unique identifier for the line item
LineNum integer Line number within the transaction
Description string Free-form text description of the line item
Amount number The total amount for the line item
DetailType string Specifies the type of line detail
LinkedTxn array
View JSON Schema on GitHub

JSON Schema

quickbooks-accounting-invoice-line-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InvoiceLine",
  "type": "object",
  "description": "A line item on an invoice",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The unique identifier for the line item"
    },
    "LineNum": {
      "type": "integer",
      "description": "Line number within the transaction"
    },
    "Description": {
      "type": "string",
      "description": "Free-form text description of the line item"
    },
    "Amount": {
      "type": "number",
      "description": "The total amount for the line item"
    },
    "DetailType": {
      "type": "string",
      "description": "Specifies the type of line detail"
    },
    "LinkedTxn": {
      "type": "array"
    }
  }
}