update_employee
Modify employee records by updating their name, age, and other details through the employee management system.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
age | Yes | ||
id | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"age": {
"title": "Age",
"type": "integer"
},
"id": {
"title": "Id",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"id",
"name",
"age"
],
"type": "object"
}