expense_create_budget
Create a new budget for expense planning with categories, fiscal year, and period settings to organize financial tracking in Excel.
Instructions
Create a new budget for expense planning
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budgetId | Yes | ||
categories | Yes | Budget amounts by category | |
costCenters | No | ||
fiscalYear | Yes | ||
name | Yes | ||
period | Yes |
Input Schema (JSON Schema)
{
"properties": {
"budgetId": {
"type": "string"
},
"categories": {
"description": "Budget amounts by category",
"type": "object"
},
"costCenters": {
"type": "object"
},
"fiscalYear": {
"type": "number"
},
"name": {
"type": "string"
},
"period": {
"enum": [
"annual",
"quarterly",
"monthly"
],
"type": "string"
}
},
"required": [
"budgetId",
"name",
"fiscalYear",
"period",
"categories"
],
"type": "object"
}