Created
February 10, 2020 17:19
-
-
Save patmandenver/f647931e174b5aa841bf7333bd9df616 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "2018": { | |
| "January": { | |
| "food": 240.5, | |
| "heating": 89.2, | |
| "rent": 1709.1, | |
| "notes": "January was cold", | |
| "in_the_red": false, | |
| "urls": [ | |
| "http://www.example.com/budget/2018", | |
| "http://www.example.com/budget/2019" | |
| ] | |
| }, | |
| "February": { | |
| "food": 202.5, | |
| "heating": 112.2, | |
| "rent": 1709.1, | |
| "notes": "Too much rent", | |
| "in_the_red": false | |
| }, | |
| "March": { | |
| "food": 320.5, | |
| "heating": 45.2, | |
| "rent": 1709.1, | |
| "notes": "Notes for this time", | |
| "in_the_red": false | |
| } | |
| }, | |
| "2019": { | |
| "January": { | |
| "food": 120.5, | |
| "heating": 88.2, | |
| "rent": 1809.1, | |
| "notes": "Was in the hole", | |
| "in_the_red": true | |
| }, | |
| "February": { | |
| "food": 102.5, | |
| "heating": 122.2, | |
| "rent": 1809.1, | |
| "notes": "Doing good", | |
| "in_the_red": false | |
| }, | |
| "March": { | |
| "food": 120.5, | |
| "heating": 35.2, | |
| "rent": 1809.1, | |
| "notes": "Had to pay for B-day", | |
| "in_the_red": false | |
| } | |
| }, | |
| "2020": { | |
| "January": { | |
| "food": 220.5, | |
| "heating": 18.2, | |
| "rent": 1909.1, | |
| "notes": "This is a very very very long note... maybe too long", | |
| "in_the_red": false | |
| }, | |
| "February": { | |
| "food": 223.5, | |
| "heating": 12.2, | |
| "rent": 1909.1, | |
| "notes": "Test it out", | |
| "in_the_red": false | |
| }, | |
| "March": { | |
| "food": 120.5, | |
| "heating": 25.2, | |
| "rent": 1909.1, | |
| "notes": "So Winning", | |
| "in_the_red": true | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment