expense_budget_vs_actual
Compare actual expenses against budget allocations to identify variances and track financial performance within specified date ranges.
Instructions
Compare actual expenses against budget
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budgetId | Yes | ||
endDate | Yes | ||
startDate | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budgetId": {
"type": "string"
},
"endDate": {
"format": "date",
"type": "string"
},
"startDate": {
"format": "date",
"type": "string"
}
},
"required": [
"budgetId",
"startDate",
"endDate"
],
"type": "object"
}