ledger_print
Filter and print financial transactions in ledger format using date ranges or regex patterns for reporting and analysis with Ledger CLI.
Instructions
Print transactions in ledger format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"LedgerPrint": {
"properties": {
"begin_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Start date for transactions (YYYY/MM/DD)",
"title": "Begin Date"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "End date for transactions (YYYY/MM/DD)",
"title": "End Date"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter transactions by regex pattern",
"title": "Query"
}
},
"title": "LedgerPrint",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/LedgerPrint"
}
},
"required": [
"params"
],
"title": "ledger_printArguments",
"type": "object"
}