Model output
The modelOutput object of the output dataset includes machines, employees and unassignedJobs.
In the following example, Machine 1 is assigned to Job A, Ann is assigned to Job B, and Job C is unassigned:
{
"modelOutput": {
"machines": [
{
"id": "Machine 1",
"schedule": [
{
"id": "Job A",
"start": "2027-02-01T09:00:00-04:00",
"end": "2027-02-01T17:00:00-04:00"
}
]
}
],
"employees": [
{
"id": "Ann",
"schedule": [
{
"id": "Job B",
"start": "2027-02-01T09:00:00-04:00",
"end": "2027-02-01T17:00:00-04:00"
}
]
}
],
"unassignedJobs": [
{
"id": "Job C"
}
]
}
}
Next
-
See the full API spec or try the online API.
-
Learn about Input metrics.