Skip to main content

PurchaseOrderLineItem

A single line item on a purchase order, with ordering and receiving details.

itemIdstring

Reference to the item being ordered.

Example: 2087
itemNamestring

Display name of the item.

Example: Organic Tahini
descriptionstring

Optional free-text description for this line (e.g., special instructions to the vendor).

quantitynumber

Quantity ordered.

Example: 200
unitstring

Unit of measure.

Example: lbs
unitPricenumber

Price per unit.

Example: 3.25
totalPricenumber

Line total (quantity x unit price), before tax.

Example: 650
taxRatenumber

Tax rate applied to this line item, expressed as a decimal (e.g., 0.08 for 8%).

Example: 0.08
receivedQuantitynumber

Quantity received so far. Updated each time an intake is recorded against this PO line.

Example: 200
lineStatusstring

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_received
PurchaseOrderLineItem
{
"itemId": "2087",
"itemName": "Organic Tahini",
"description": "string",
"quantity": 200,
"unit": "lbs",
"unitPrice": 3.25,
"totalPrice": 650,
"taxRate": 0.08,
"receivedQuantity": 200,
"lineStatus": "fully_received"
}