TruckRoute

Note:

In the Capacity Planning Application JDL Samples using a Composite Data Model, this entity relies on the following entities:

  • Truck

The TruckRoute entity has the following attributes, detailing the route information for each truck:

  • end - LocalDateTime: The end date and time of the truck route.

  • id - String: The unique identifier of the truck route.

  • start - LocalDateTime: The start date and time of the truck route.

  • truck.id - String: The unique identifier of the truck assigned to this route.

Here are some sample values it can contain:

Table 1. TruckRoute Attributes
end id start truck.id
2024-11-15T18:00:00 ROUTE001 2024-11-15T10:00:00 TRUCK001
2024-12-01T17:00:00 ROUTE002 2024-12-01T09:00:00 TRUCK002
2024-12-15T20:00:00 ROUTE003 2024-12-15T11:00:00 TRUCK003