Skip to content

Instantly share code, notes, and snippets.

@nnguyen168
Created May 7, 2020 17:04
Show Gist options
  • Save nnguyen168/f3c1c50c32ccb6c7904d98581d89c108 to your computer and use it in GitHub Desktop.
Save nnguyen168/f3c1c50c32ccb6c7904d98581d89c108 to your computer and use it in GitHub Desktop.
JSON example to model an address book
{
"people": [
{
"name": "John Doe",
"id": 1,
"email": "john.doe@gmail.com",
"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