Create trucking_data.json
Browse filestrucking/shipping data demo
- trucking_data.json +23 -0
trucking_data.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"shipment_id": "S-2001",
|
| 4 |
+
"origin": "Los Angeles, CA",
|
| 5 |
+
"destination": "Dallas, TX",
|
| 6 |
+
"status": "In transit",
|
| 7 |
+
"last_update": "2025-04-28T14:30:00Z"
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"shipment_id": "S-2002",
|
| 11 |
+
"origin": "Chicago, IL",
|
| 12 |
+
"destination": "New York, NY",
|
| 13 |
+
"status": "Delivered",
|
| 14 |
+
"last_update": "2025-04-27T09:15:00Z"
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"shipment_id": "S-2003",
|
| 18 |
+
"origin": "Houston, TX",
|
| 19 |
+
"destination": "Miami, FL",
|
| 20 |
+
"status": "Delayed—weather",
|
| 21 |
+
"last_update": "2025-04-29T05:45:00Z"
|
| 22 |
+
}
|
| 23 |
+
]
|