Last active
January 12, 2024 11:59
-
-
Save andrewmarmion/9069ae5856e2259026a129a434a6655a 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
| { | |
| "name": "Val", | |
| "age": 23, | |
| "favourite_colors": [ | |
| "blue", | |
| "yellow", | |
| "green" | |
| ], | |
| "fav_nums": [ | |
| 1, | |
| 2, | |
| 3 | |
| ], | |
| "address": { | |
| "number": 213, | |
| "street": "Main Street", | |
| "postcode": "E1W 4FD" | |
| }, | |
| "pets": [ | |
| { | |
| "name": "Fred", | |
| "type": "Cat" | |
| }, | |
| { | |
| "name": "Goldie", | |
| "type": "Fish" | |
| } | |
| ], | |
| "isHavingFun": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment