Created
May 7, 2020 17:04
-
-
Save nnguyen168/f3c1c50c32ccb6c7904d98581d89c108 to your computer and use it in GitHub Desktop.
JSON example to model an address book
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
{ | |
"people": [ | |
{ | |
"name": "John Doe", | |
"id": 1, | |
"email": "[email protected]", | |
"phoneType": "Mobile", | |
"phoneNumbers": [ | |
{ | |
"number": "1-541-754-3010", | |
"type": "Mobile" | |
}] | |
}], | |
"numberOfContact": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment