resources_upsertEmployeeAbilityCell

WRITE

Upsert employee ability cell.

Parameters

employeeIdstringrequired
abilityIdstringrequired
lastTrainingDatestringnullrequired
expiresAtstringnullrequired

Call it

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

call_tool
call_tool({
  "name": "resources_upsertEmployeeAbilityCell",
  "arguments": {
    "employeeId": "string",
    "abilityId": "string",
    "lastTrainingDate": "string",
    "expiresAt": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "employeeId": {
      "type": "string"
    },
    "abilityId": {
      "type": "string"
    },
    "lastTrainingDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "expiresAt": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "employeeId",
    "abilityId",
    "lastTrainingDate",
    "expiresAt"
  ]
}