Skip to content

Commit 9126b11

Browse files
#168 added nested user data json example from https://github.com/gone369/json-spread for testing
1 parent 5649a64 commit 9126b11

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

data/json/nested-user-data.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[
2+
{
3+
"user_id" : 1,
4+
"email": "1@domain.com",
5+
"hobbies": [
6+
{
7+
"type": "sport",
8+
"name": "soccer",
9+
"dates": [
10+
"May 3rd",
11+
"May 4th",
12+
"May 5th"
13+
]
14+
},
15+
{
16+
"type": "sport",
17+
"name": "basketball",
18+
"dates": [
19+
"June 3rd",
20+
"July 4th"
21+
]
22+
}
23+
]
24+
},
25+
{
26+
"user_id" : 2,
27+
"email": "2@domain.com"
28+
},
29+
{
30+
"user_id" : 3,
31+
"email": "3@domain.com",
32+
"hobbies": []
33+
}
34+
]

0 commit comments

Comments
 (0)