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 |
JSON Schema
{
"$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"
}
}
}