Workday Financials · Schema

PurchaseOrderLine

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the line item
lineNumber integer Line item number
description string Line item description
quantity number Quantity ordered
unitCost number Cost per unit
extendedAmount number Total line amount
spendCategory string Spend category for the line item
View JSON Schema on GitHub

JSON Schema

workday-financials-purchaseorderline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseOrderLine",
  "title": "PurchaseOrderLine",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the line item"
    },
    "lineNumber": {
      "type": "integer",
      "description": "Line item number"
    },
    "description": {
      "type": "string",
      "description": "Line item description"
    },
    "quantity": {
      "type": "number",
      "format": "double",
      "description": "Quantity ordered"
    },
    "unitCost": {
      "type": "number",
      "format": "double",
      "description": "Cost per unit"
    },
    "extendedAmount": {
      "type": "number",
      "format": "double",
      "description": "Total line amount"
    },
    "spendCategory": {
      "type": "string",
      "description": "Spend category for the line item"
    }
  }
}