production_setPeopleOvertimeBulk

WRITE

Set people overtime bulk.

Parameters

locationIdstringrequired
datestringrequired
hoursnumberrequired
omitted = the single `date` only */ toDatestringnulloptional
shiftIdstringnulloptional
departmentIdstringnulloptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "production_setPeopleOvertimeBulk",
  "arguments": {
    "locationId": "string",
    "date": "string",
    "hours": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "locationId": {
      "type": "string"
    },
    "date": {
      "type": "string"
    },
    "omitted = the single `date` only */\n    toDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "hours": {
      "type": "number"
    },
    "shiftId": {
      "type": [
        "string",
        "null"
      ]
    },
    "departmentId": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "locationId",
    "date",
    "hours"
  ]
}