ResourceDelivery
In the Capacity Planning Application JDL Samples using a Composite Data Model, this entity relies on the following entities:
-
Resource -
Plant -
TruckRoute
The ResourceDelivery entity has the following attributes, detailing the delivery schedule and route information for resources:
-
end-LocalDateTime: The end date and time of the delivery. -
start-LocalDateTime: The start date and time of the delivery. -
from.plantId-String: The plant identifier for the origin of the delivery. -
from.country.id-String: The country identifier for the origin of the delivery. -
resource.id-String,required: The unique identifier of the resource being delivered. -
route.id-String: The identifier of the delivery route. -
route.truck.id-String: The identifier of the truck used for the delivery route. -
to.plantId-String: The plant identifier for the destination of the delivery. -
to.country.id-String: The country identifier for the destination of the delivery.
Here are some sample values it can contain:
| end | start | from.plantId | from.country.id | resource.id | route.id | route.truck.id | to.plantId | to.country.id |
|---|---|---|---|---|---|---|---|---|
| 2024-11-15T18:00:00 | 2024-11-15T10:00:00 | Nice | FRA | RES001 | ROUTE001 | TRUCK001 | Paris | FRA |
| 2024-12-01T16:00:00 | 2024-12-01T08:00:00 | London | UK | RES002 | ROUTE002 | TRUCK002 | Paris | FRA |