Last active
October 13, 2021 14:14
-
-
Save tonyerskine/2345fee79a2a5618c1d588cdb7edfe20 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"date": "2021-10-13T14:13:28Z", | |
"cost": 12.34, | |
"mealsByPerson": [ | |
{ | |
"Tom": { | |
"meat": "bacon", | |
"eggs": "scrambled", | |
"side": "hashbrowns" | |
} | |
}, | |
{ | |
"Jack": { | |
"meat": "sausage", | |
"eggs": "over easy", | |
"side": "pancakes" | |
} | |
} | |
] | |
} |
This file contains 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
{ | |
"date": "2021-10-13T14:09:32Z", | |
"cost": 12.34, | |
"mealsByPerson": { | |
"Tom": { | |
"meat": "bacon", | |
"eggs": "scrambled", | |
"side": "hashbrowns" | |
}, | |
"Jack": { | |
"meat": "sausage", | |
"eggs": "over easy", | |
"side": "pancakes" | |
} | |
}, | |
"mealsByPersonSize": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment