The file format is JSON,
with the budgets
and expenses
properties as arrays. It works the same for
both v1 and v2.
{
"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"
}
]
}