Intuit · Schema

SalesItemLineDetail

Detail for a sales item line

AccountingCustom FieldsFinancialFinancial ServicesInvoicingPaymentsPayrollProject ManagementSales TaxSmall BusinessTaxTax PreparationTaxesTime TrackingFortune 1000

Properties

Name Type Description
UnitPrice number Unit price of the item
RatePercent number The discount rate as a percentage (for discount lines)
Qty number Number of items for the line
ServiceDate string Date the service was performed
DiscountAmt number Discount amount applied to the line
DiscountRate number Discount rate as a percentage
View JSON Schema on GitHub

JSON Schema

quickbooks-accounting-sales-item-line-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SalesItemLineDetail",
  "type": "object",
  "description": "Detail for a sales item line",
  "properties": {
    "UnitPrice": {
      "type": "number",
      "description": "Unit price of the item"
    },
    "RatePercent": {
      "type": "number",
      "description": "The discount rate as a percentage (for discount lines)"
    },
    "Qty": {
      "type": "number",
      "description": "Number of items for the line"
    },
    "ServiceDate": {
      "type": "string",
      "description": "Date the service was performed"
    },
    "DiscountAmt": {
      "type": "number",
      "description": "Discount amount applied to the line"
    },
    "DiscountRate": {
      "type": "number",
      "description": "Discount rate as a percentage"
    }
  }
}