production_calculateJobPriority

WRITE

Calculate job priority.

Parameters

// Optional - if updating an existing job dueDatestringnullrequired
deadlineTypestringrequired
locationIdstringrequired
jobIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "production_calculateJobPriority",
  "arguments": {
    "// Optional - if updating an existing job\n    dueDate": "string",
    "deadlineType": "string",
    "locationId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string"
    },
    "// Optional - if updating an existing job\n    dueDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "deadlineType": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    }
  },
  "required": [
    "// Optional - if updating an existing job\n    dueDate",
    "deadlineType",
    "locationId"
  ]
}