ledger_accounts
Retrieve and filter a list of accounts in Ledger CLI using regex patterns to streamline financial data analysis and reporting tasks.
Instructions
List all accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"LedgerAccounts": {
"properties": {
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter accounts by regex pattern",
"title": "Query"
}
},
"title": "LedgerAccounts",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/LedgerAccounts"
}
},
"required": [
"params"
],
"title": "ledger_accountsArguments",
"type": "object"
}