Automating workforce scheduling has been overlooked for too long. Manual scheduling wastes time, is prone to error, and, most importantly, it’s a drain on everyone’s patience. Our API tackles this by taking in your shifts, user data, rules, and preferences, then processing all that input to provide you with a workable, optimized schedule in a fraction of the time.
Here is what you need to use the API:
A list of employees
An employee is hired on a contract which might regulate how many hours she can work a day or how many days she can work a month.
An employee might also have certain skills or belong to certain teams.
Lastly, an employee might have certain wishes to work or not to work on given dates.
Here is how we represent that in a highly abstract and flexible way:
{
"employees": [
{
"id": 1,
"teams": [
{
"id": 1,
"start": "2020-06-28T09:00:00+00:00",
"end": "2025-06-28T09:00:00+00:00"
}
],
"skills": [
{
"id": 1,
"start": "2020-06-28T09:00:00+00:00",
"end": "2025-06-28T09:00:00+00:00"
}
],
"contract": {
"hoursBetweenShift": 0,
"maxHoursDay": 0,
"maxHoursWeek": 0,
"maxHoursMonth": 0,
"maxWorkDaysMonth": 0,
"maxConsecutiveDays": 0,
"minConsecutiveDays": 0,
"weekendWorkFrequency": 0,
"maxNhours": 0,
"InKWeeks": 0,
"maxConsecutiveLateShifts": 0,
"maxConsecutiveNightShifts": 0
},
"wishes": [
{
"type": "UNAVAILABLE",
"start": "2020-06-28T09:00:00+00:00",
"end": "2025-06-28T09:00:00+00:00"
}
]
}
],
}
For more about representing employees, see this: https://api-docs.datapult.dk/docs/employees-in-your-schedule
A list of shifts to be covered
The other important part of scheduling is the work to be done. We represent this as shifts. A shift belongs to skills and teams like an employee (through what we call a spot). Here is how it looks like:
{
"shifts": [
{
"id": 1,
"spot": 1,
"start": "2020-06-28T09:00:00+00:00",
"end": "2020-06-28T16:00:00+00:00",
"importance": "MANDATORY",
"suggestedEmployees": [
1
],
"dislikedEmployees": [
2
],
"allowedCollisionSpots": [
3
],
"fixed": true,
"historic": true,
"employee": 0,
"foreignInt": 0
}
],
Here is a further explanation of the shifts, https://api-docs.datapult.dk/docs/shifts-in-your-schedule
Why this abstraction matters
At the core of our system is a scheduling AI that does all the heavy lifting. Our documentation dives into specifics (see our Employees, Shifts, and Spots sections), outlining how employee wishes, contractual restrictions, and scheduling rules integrate seamlessly. But the crux of it is this: we’ve built a service that takes your complex scheduling requirements and simplifies them to an API call, allowing planners to focus on strategic planning rather than firefighting daily operational chaos.
If you want to learn more, read the next parts of the series or go straight to our documentation.
Top comments (0)