Skip to main content

ScheduledProductionTask

A single scheduled production task — a time slot on a production line with assigned operators. Tasks are the building blocks of the production schedule.

taskIdstring

Production task identifier.

Example: 8291
namestring

Task name.

Example: Batch 1 - Mixing
taskTypestring

Type of task: work_order — production run for a work order. maintenance — scheduled equipment maintenance. cleaning — line cleaning or sanitation.

Possible values: [work_order, maintenance, cleaning]

Example: work_order
sequenceNumberinteger

Order in which this task should be executed within the work order.

Example: 1
productionLineIdstring

Assigned production line identifier.

Example: 12
productionLineNamestring

Display name of the production line.

Example: Line A - Mixing
plannedStartDateTimestring<date-time>

Scheduled start time (ISO 8601).

Example: 2025-04-10T08:00:00Z
plannedEndDateTimestring<date-time>

Scheduled end time (ISO 8601).

Example: 2025-04-10T14:00:00Z
plannedDurationMinutesnumber

Planned duration in minutes.

Example: 360
operators object[]

Operators assigned to this production task.

  • Array [
  • operatorIdstring

    Operator identifier.

    Example: usr-00412
    operatorNamestring

    Display name of the operator.

    Example: Maria Garcia
    assignmentTypestring

    Role in which this person is assigned: operator — production worker. supervisor — shift or line supervisor. qc_inspector — quality control inspector.

    Possible values: [operator, supervisor, qc_inspector]

    Example: operator
    assignedAtstring<date-time>

    When the operator was assigned (ISO 8601).

    Example: 2025-04-08T10:30:00Z
  • ]
  • ScheduledProductionTask
    {
    "taskId": "8291",
    "name": "Batch 1 - Mixing",
    "taskType": "work_order",
    "sequenceNumber": 1,
    "productionLineId": "12",
    "productionLineName": "Line A - Mixing",
    "plannedStartDateTime": "2025-04-10T08:00:00Z",
    "plannedEndDateTime": "2025-04-10T14:00:00Z",
    "plannedDurationMinutes": 360,
    "operators": [
    {
    "operatorId": "usr-00412",
    "operatorName": "Maria Garcia",
    "assignmentType": "operator",
    "assignedAt": "2025-04-08T10:30:00Z"
    }
    ]
    }