The file format is JSON, with the budgets
and expenses
properties as arrays.
{
"budgets": [
{
"name": "Food",
"value": 100,
"month": "2020-01",
"id": "any-unique-string-works"
}
],
"expenses": [
{
"cost": 10.99,
"description": "Lunch",
"budget": "Food",
"date": "2020-01-01",
"id": "another-unique-string"
}
]
}
If you're looking to import a CSV file, there's a converter from Oikon's CSV format into Budget Zen's JSON here.