Skip to content

Instantly share code, notes, and snippets.

@olopsman
Created October 2, 2019 10:14
Show Gist options
  • Save olopsman/a974318014cb68fac12fb2ba7fcddf90 to your computer and use it in GitHub Desktop.
Save olopsman/a974318014cb68fac12fb2ba7fcddf90 to your computer and use it in GitHub Desktop.
JSON Person payload
[
{
"_id": "1",
"name": "paulo",
"age": 42,
"car": {
"model": "outlander",
"year": "2016"
},
"kids": [
"penny",
"padma",
"amber",
"pauline"
]
},
{
"_id": "2",
"name": "tin",
"age": 40,
"car": {
"model": "crv",
"year": "2004"
},
"kids": [
"mary",
"sophie",
"patrice",
"laeticia"
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment