AI-generated Key Takeaways
-
VehicleLoad objects represent the actual load a vehicle carries at a specific point on its route.
-
They utilize a JSON representation with an
amountfield specifying the load quantity, typically formatted as an int64 string. -
The unit of measure for the load is usually indicated by the load type, as defined in the
vehicle_loadsfield of the Transition object.
Reports the actual load of the vehicle at some point along the route, for a given type (see Transition.vehicle_loads).
| JSON representation |
|---|
{ "amount": string } |
| Fields | |
|---|---|
amount |
The amount of load on the vehicle, for the given type. The unit of load is usually indicated by the type. See |