Home
PeopleSoft
Peoplesoft Supply Chain Management Purchase Order Structure
Peoplesoft Supply Chain Management Purchase Order Structure
PeopleSoft purchasing purchase order.
Type: object
Properties: 9
Campus Solutions CRM Enterprise Software ERP Financial Management HCM Supply Chain Management
PurchaseOrder is a JSON Structure definition published by PeopleSoft, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
BUSINESS_UNIT
PO_ID
VENDOR_ID
PO_DT
PO_STATUS
CURRENCY_CD
BUYER_ID
SHIP_TO_LOCATION
LINES
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/peoplesoft/refs/heads/main/json-structure/peoplesoft-supply-chain-management-purchase-order-structure.json",
"name": "PurchaseOrder",
"description": "PeopleSoft purchasing purchase order.",
"type": "object",
"properties": {
"BUSINESS_UNIT": {
"type": "string",
"description": "Business unit.",
"example": "US001"
},
"PO_ID": {
"type": "string",
"description": "Purchase order ID.",
"example": "PO0012345"
},
"VENDOR_ID": {
"type": "string",
"description": "Vendor ID.",
"example": "VND001234"
},
"PO_DT": {
"type": "date",
"description": "PO date.",
"example": "2026-04-17"
},
"PO_STATUS": {
"type": "string",
"description": "PO status.",
"enum": [
"O",
"A",
"C",
"D",
"X",
"PX"
],
"example": "A"
},
"CURRENCY_CD": {
"type": "string",
"description": "Currency.",
"example": "USD"
},
"BUYER_ID": {
"type": "string",
"description": "Buyer ID.",
"example": "BYR001"
},
"SHIP_TO_LOCATION": {
"type": "string",
"description": "Ship-to location.",
"example": "WH001"
},
"LINES": {
"type": "array",
"description": "PO lines.",
"items": {
"type": "object",
"properties": {
"LINE_NBR": {
"type": "int32",
"description": "Line number.",
"example": 1
},
"INV_ITEM_ID": {
"type": "string",
"description": "Item ID.",
"example": "ITEM001234"
},
"DESCR": {
"type": "string",
"description": "Description.",
"example": "Office Chair - Ergonomic"
},
"QTY_PO": {
"type": "double",
"description": "Quantity.",
"example": 25
},
"PRICE_PO": {
"type": "double",
"description": "Unit price.",
"example": 450.0
},
"UNIT_OF_MEASURE": {
"type": "string",
"description": "UOM.",
"example": "EA"
}
}
}
}
},
"x-schema-source": "domain-knowledge"
}