PurchaseOrder
A procurement transaction requesting goods from a vendor.
Human-readable PO number displayed in Keychain OS and sent to the vendor.
PO-2025-0471Reference to the vendor this PO is placed with.
Display name of the vendor.
Pacific Ingredients Co.Date the PO was invoiced (ISO 8601).
2025-03-10Expected delivery date. May be updated by the vendor during the review process.
2025-03-17Current status of the purchase order:
draft— created but not yet sent to the vendor.sent— transmitted to the vendor for review.accepted— vendor has confirmed the order.shipped— goods are in transit.partially_received— some line items have been received, others are still outstanding.completed— all line items fully received.cancelled— order was cancelled.delayed— delivery is past the expected date.
Possible values: [draft, sent, accepted, shipped, partially_received, completed, cancelled, delayed]
completedSum of all line item totals before tax, discounts, and shipping.
2800Total tax applied to the order.
224Total discount applied to the order. A value of 0 means no discount.
0Shipping charges for the order.
150Final amount due (subtotal + tax - discount + shipping).
3174Three-letter currency code (ISO 4217).
USDPayment terms for this PO (e.g., "Net 30", "Due on receipt"). Defaults from the vendor record unless overridden.
Net 30lineItems object[]
The items ordered on this PO, with quantities, pricing, and receiving status.
Reference to the item being ordered.
2087Display name of the item.
Organic TahiniOptional free-text description for this line (e.g., special instructions to the vendor).
Quantity ordered.
200Unit of measure.
lbsPrice per unit.
3.25Line total (quantity x unit price), before tax.
650Tax rate applied to this line item, expressed as a decimal (e.g., 0.08 for 8%).
0.08Quantity received so far. Updated each time an intake is recorded against this PO line.
200Fulfillment 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]
fully_received{
"orderNumber": "PO-2025-0471",
"vendorId": "string",
"vendorName": "Pacific Ingredients Co.",
"invoiceDate": "2025-03-10",
"expectedDeliveryDate": "2025-03-17",
"status": "completed",
"subtotal": 2800,
"taxAmount": 224,
"discount": 0,
"shippingCost": 150,
"totalAmount": 3174,
"currency": "USD",
"paymentTerms": "Net 30",
"lineItems": [
{
"itemId": "2087",
"itemName": "Organic Tahini",
"description": "string",
"quantity": 200,
"unit": "lbs",
"unitPrice": 3.25,
"totalPrice": 650,
"taxRate": 0.08,
"receivedQuantity": 200,
"lineStatus": "fully_received"
}
]
}