manhattan-associates · Schema
Receipt
Properties
| Name | Type | Description |
|---|---|---|
| receiptId | string | |
| externalASNId | string | |
| facilityId | string | |
| supplierId | string | |
| status | string | |
| expectedArrivalDate | string | |
| lines | array | |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Receipt",
"title": "Receipt",
"type": "object",
"properties": {
"receiptId": {
"type": "string"
},
"externalASNId": {
"type": "string"
},
"facilityId": {
"type": "string"
},
"supplierId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"expected",
"in_progress",
"completed",
"closed"
]
},
"expectedArrivalDate": {
"type": "string",
"format": "date"
},
"lines": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReceiptLine"
}
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}