1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": {
"first": "John",
"last": "Smith",
"full": "John Smith"
},
"age": 32,
"placeholder": null,
"employment": {
"employed": true,
"name": "Postman",
"sinceYear": 2019
},
"parents": {
"father": {
"birthday": {
"year": 1970,
"month": 2,
"day": 3
}
}
},
"gender": "M",
"favourites": [
"blue",
"fish",
"egg",
"Postman",
4.73753,
false,
{
"hello": "world",
"food": {
"favourite": "egg",
"hated": "beef"
}
}
],
"empty1": {},
"empty2": [],
"negative": {
"int": -34,
"float": -34.34
}
}