manhattan-associates · Schema
ReceiptLine
Properties
| Name | Type | Description |
|---|---|---|
| lineId | string | |
| itemId | string | |
| expectedQuantity | number | |
| receivedQuantity | number | |
| uom | string | |
| lotNumber | string | |
| expirationDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReceiptLine",
"title": "ReceiptLine",
"type": "object",
"properties": {
"lineId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"expectedQuantity": {
"type": "number"
},
"receivedQuantity": {
"type": "number"
},
"uom": {
"type": "string"
},
"lotNumber": {
"type": "string"
},
"expirationDate": {
"type": "string",
"format": "date"
}
}
}