accounting_getFinancialStatementPeriodSeries
READGet financial statement period series.
Parameters
bucketsany[]requiredincludeCurrentYearEarningsbooleanoptionaltranslateobjectoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_getFinancialStatementPeriodSeries",
"arguments": {
"buckets": []
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"buckets": {
"type": "array",
"items": {}
},
"includeCurrentYearEarnings": {
"type": "boolean"
},
"translate": {
"type": "object",
"properties": {
"targetCurrency": {
"type": "string"
}
},
"required": [
"targetCurrency"
]
}
},
"required": [
"buckets"
]
}