BillLineItem
A single line on a bill. Can represent an item charge, freight, tax, discount, service fee, or miscellaneous cost.
lineTypestring
Type of charge.
Possible values: [item, freight, tax, discount, service, misc]
Example:
itemskuCodestring
Product code (primarily for item type lines).
Example:
2087descriptionstring
Line item description.
Example:
Organic Tahiniquantitynumber
Quantity billed.
Example:
200unitOfMeasurestring
Unit of measure.
Example:
lbsunitPricenumber
Price per unit.
Example:
3.25taxRatenumber
Tax rate as a decimal (e.g., 0.08 for 8%).
Example:
0.08taxAmountnumber
Tax amount for this line.
Example:
52lineAmountnumber
Line total.
Example:
650BillLineItem
{
"lineType": "item",
"skuCode": "2087",
"description": "Organic Tahini",
"quantity": 200,
"unitOfMeasure": "lbs",
"unitPrice": 3.25,
"taxRate": 0.08,
"taxAmount": 52,
"lineAmount": 650
}