Activity
In the Capacity Planning Application JDL Samples using a Composite Data Model, this entity relies on the following entities:
-
Plant
The Activity entity has the following attributes:
-
creationDate-LocalDate: The date the activity was created. -
creationDateTime-LocalDateTime: The date and time the activity was created. -
durationInHours-Double: The duration of the activity in hours. -
id-String,required: The unique identifier of the activity. -
name-String: The name of the activity. -
plant.plantId-String: The identifier of the plant associated with the activity. -
plant.country.id-String: The country identifier of the plant associated with the activity.
Here are some sample values it can contain:
| creationDate | creationDateTime | durationInHours | id | name | plant.plantId | plant.country.id |
|---|---|---|---|---|---|---|
| 2024-11-13 | 2024-11-13T09:00:00 | 3.5 | ACT001 | Activity Alpha | Paris | FR |
| 2024-12-01 | 2024-12-01T14:30:00 | 2.0 | ACT002 | Activity Beta | NYC | USA |
| 2024-12-15 | 2024-12-15T11:15:00 | 5.0 | ACT003 | Activity Gamma | London | UK |