-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-request.json
More file actions
42 lines (42 loc) · 978 Bytes
/
sample-request.json
File metadata and controls
42 lines (42 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"truck": {
"id": "truck-123",
"max_weight_lbs": 44000,
"max_volume_cuft": 3000
},
"orders": [
{
"id": "ord-001",
"payout_cents": 250000,
"weight_lbs": 18000,
"volume_cuft": 1200,
"origin": "Los Angeles, CA",
"destination": "Dallas, TX",
"pickup_date": "2025-12-05",
"delivery_date": "2025-12-09",
"is_hazmat": false
},
{
"id": "ord-002",
"payout_cents": 180000,
"weight_lbs": 12000,
"volume_cuft": 900,
"origin": "Los Angeles, CA",
"destination": "Dallas, TX",
"pickup_date": "2025-12-04",
"delivery_date": "2025-12-10",
"is_hazmat": false
},
{
"id": "ord-003",
"payout_cents": 320000,
"weight_lbs": 30000,
"volume_cuft": 1800,
"origin": "Los Angeles, CA",
"destination": "Dallas, TX",
"pickup_date": "2025-12-06",
"delivery_date": "2025-12-08",
"is_hazmat": true
}
]
}