Skip to content

Commit

Permalink
#168 added nested user data json example from https://github.com/gone…
Browse files Browse the repository at this point in the history
…369/json-spread for testing
  • Loading branch information
RandomFractals committed Sep 28, 2020
1 parent 5649a64 commit 9126b11
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions data/json/nested-user-data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{
"user_id" : 1,
"email": "[email protected]",
"hobbies": [
{
"type": "sport",
"name": "soccer",
"dates": [
"May 3rd",
"May 4th",
"May 5th"
]
},
{
"type": "sport",
"name": "basketball",
"dates": [
"June 3rd",
"July 4th"
]
}
]
},
{
"user_id" : 2,
"email": "[email protected]"
},
{
"user_id" : 3,
"email": "[email protected]",
"hobbies": []
}
]

0 comments on commit 9126b11

Please sign in to comment.