Hey,
we want to implement the following functionality with the optimization endpoint:
We have multiple cars, each of them have different capacities, but also different cap. qualities.
These are the qualities:
- normal seats
- wider seats
- wheelchair spaces
- space for standing persons
Each vehicle can have multiple quantities of each qualitiy.
- Car 1:
- 4 normal seats
- 2 wheelchair spaces
- Car 2
- 20 normal seats
- 10 standing spaces
- 2 wheelchair spaces
- and so on
Each shipment (passenger) can have a flag weather it is able to be transportet in with or multiple qualities
- Passenger 1:
- can use normal seats
- can use standing spaces
- Passenger 2:
- can only use wheelchair spaces
- and so on
Quesion:
I think to model something like that, we should use the “skills” feature. But how would we set it up?
By using multiple unique identifiers for each quality and quantity ("normal_seat_1, normal_seat_2 …)?