-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
18 lines (18 loc) · 1.01 KB
/
example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"filetype" : "budgettool",
"version": 1,
"start_balance":4567.89,
"start_date":"28 July 2016",
"duration": {"weeks":25},
"budget" : [
{ "name":"paycheck", "category":"income", "amount": 1234.56, "schedule":{ "type":"everynweek", "data" : { "start":"23 March 2016", "step":2 } },
"except":[ {"date":"20 April 2016", "amount":1000.00}, {"date":"4 May 2016", "amount":2000.00} ]
},
{ "name":"taxes", "category":"bill", "amount": -6789.21, "schedule":{"type":"everynmonth", "data" : { "start":"30 June 2016", "step":6 } },
"except":[ {"date":"30 June 2016", "amount":-3000.00} ]
},
{ "name":"electric", "category":"bill", "amount": -123.32, "schedule":{ "type":"monthly", "data" : { "day":12 } } },
{ "name":"lunch", "category":"bill", "amount": -123.32, "schedule":{ "type":"weekly", "data" : { "day":"friday" } } },
{ "name":"baz", "category":"bill", "amount": -345.23, "schedule":{ "type":"once", "data" : { "date":"16 March 2016" } } }
]
}