Order Packed
v1.0.0eventsPublished when an order has been picked and packed in the warehouse.
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "OrderPacked",
4 "description": "Published when an order has been picked and packed in the warehouse",
5 "type": "object",
6 "properties": {
7 "orderId": { "type": "string", "format": "uuid" },
8 "pickingJobId": { "type": "string", "format": "uuid" },
9 "parcelCount": { "type": "integer", "minimum": 1 },
10 "packedAt": { "type": "string", "format": "date-time" }
11 },
12 "required": ["orderId", "packedAt"]
13}
14Details
- Format
- JSON Schema
- Resource
- events
- Filename
- schema.json