generate_income_statement
Generate an income statement (P&L) for specified date ranges to analyze financial performance and support accounting workflows with Excel integration.
Instructions
Generate Income Statement (P&L) for specified period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | ||
filePath | No | ||
outputToExcel | No | ||
startDate | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"format": "date",
"type": "string"
},
"filePath": {
"type": "string"
},
"outputToExcel": {
"default": false,
"type": "boolean"
},
"startDate": {
"format": "date",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}