Workday Financials · Schema

GoodsReceipt

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the goods receipt
receiptNumber string Goods receipt number
purchaseOrder object
receiptDate string Date goods were received
status string Receipt status
View JSON Schema on GitHub

JSON Schema

workday-financials-goodsreceipt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoodsReceipt",
  "title": "GoodsReceipt",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the goods receipt"
    },
    "receiptNumber": {
      "type": "string",
      "description": "Goods receipt number"
    },
    "purchaseOrder": {
      "$ref": "#/components/schemas/PurchaseOrderRef"
    },
    "receiptDate": {
      "type": "string",
      "format": "date",
      "description": "Date goods were received"
    },
    "status": {
      "type": "string",
      "enum": [
        "Received",
        "Partially Received",
        "Returned"
      ],
      "description": "Receipt status"
    }
  }
}