comparative_income_statement
Generate comparative income statements across multiple periods to analyze financial performance trends and support business decision-making.
Instructions
Generate comparative income statement for multiple periods
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | No | ||
outputToExcel | No | ||
periods | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"type": "string"
},
"outputToExcel": {
"default": false,
"type": "boolean"
},
"periods": {
"items": {
"properties": {
"endDate": {
"format": "date",
"type": "string"
},
"startDate": {
"format": "date",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"periods"
],
"type": "object"
}