Workday · Schema

PurchaseOrder

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
purchaseOrderNumber string
orderDate string
totalAmount number
status string
View JSON Schema on GitHub

JSON Schema

financialManagement-purchase-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PurchaseOrder",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "purchaseOrderNumber": {
      "type": "string"
    },
    "orderDate": {
      "type": "string"
    },
    "totalAmount": {
      "type": "number"
    },
    "status": {
      "type": "string"
    }
  }
}