calculate_labor_cost
Calculate labor costs for a specific period using employee hours and rates to manage payroll expenses and budget planning.
Instructions
Calculate labor costs for a specific period based on employee hours and rates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in YYYY-MM-DD format | |
startDate | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}