generate_trial_balance
Generate a trial balance report for a specified date to verify accounting accuracy and prepare financial statements.
Instructions
Generate Trial Balance as of specified date
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asOfDate | Yes | ||
filePath | No | ||
outputToExcel | No |
Input Schema (JSON Schema)
{
"properties": {
"asOfDate": {
"format": "date",
"type": "string"
},
"filePath": {
"type": "string"
},
"outputToExcel": {
"default": false,
"type": "boolean"
}
},
"required": [
"asOfDate"
],
"type": "object"
}