PurchaseOrderLineItem
A single line item on a purchase order, with ordering and receiving details.
itemIdstring
Reference to the item being ordered.
Example:
2087itemNamestring
Display name of the item.
Example:
Organic Tahinidescriptionstring
Optional free-text description for this line (e.g., special instructions to the vendor).
quantitynumber
Quantity ordered.
Example:
200unitstring
Unit of measure.
Example:
lbsunitPricenumber
Price per unit.
Example:
3.25totalPricenumber
Line total (quantity x unit price), before tax.
Example:
650taxRatenumber
Tax rate applied to this line item, expressed as a decimal (e.g., 0.08 for 8%).
Example:
0.08receivedQuantitynumber
Quantity received so far. Updated each time an intake is recorded against this PO line.
Example:
200lineStatusstring
Fulfillment status of this line item:
pending— no goods received yet.partially_received— some quantity received, but less than ordered.fully_received— the full ordered quantity has been delivered.
Possible values: [pending, partially_received, fully_received]
Example:
fully_receivedPurchaseOrderLineItem
{
"itemId": "2087",
"itemName": "Organic Tahini",
"description": "string",
"quantity": 200,
"unit": "lbs",
"unitPrice": 3.25,
"totalPrice": 650,
"taxRate": 0.08,
"receivedQuantity": 200,
"lineStatus": "fully_received"
}