Skip to content
Florian Schmitt edited this page Aug 15, 2019 · 2 revisions

An example for a minimalistic offline json file:

{
    "AccountTree": {
        "Departments": [
            {
                "Accounts": [
                    {
                        "Name": "my_account",
                        "SubAccounts": [
                            {
                                "Name": "subaccount1"
                            },
                            {
                                "Name": "another_subaccount"
                            }
                        ]
                    }
                ],
                "Name": "my_dep"
            }
        ]
    }
}
Clone this wiki locally