Created
March 16, 2022 17:09
-
-
Save ThiagoBarradas/710a9752b7b3419cad295a307e40c5b3 to your computer and use it in GitHub Desktop.
person.json
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
{ | |
"firstName": "John", | |
"lastName": "Smith", | |
"age": 25, | |
"address": | |
{ | |
"streetAddress": "21 2nd Street", | |
"city": "New York", | |
"state": "NY", | |
"postalCode": "10021" | |
}, | |
"phoneNumber": | |
[ | |
{ | |
"type": "home", | |
"number": "212 555-1234" | |
}, | |
{ | |
"type": "fax", | |
"number": "646 555-4567" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment