-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.json
44 lines (44 loc) · 1.11 KB
/
example.json
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
[
{
"bigobj": {
"testobj3": {
"testarray2": [
true,
69,
69.900002
],
"testbool2": true,
"teststr2": "example string 2"
},
"emptyArrObj": [
{}
],
"emptyObject": {},
"testarray1": [
{
"testint2": -67,
"testfloat2": 61.900002
},
{
"testint2": 68,
"testfloat2": 62.900002
},
{
"testint2": -69,
"testfloat2": 63.969690
}
],
"emptyArray": [],
"nullItem": null,
"testobj1": {
"testfloat1": 60.900002,
"testint1": 66,
"testobj2": {
"testbool1": true,
"emptyString": "",
"teststr1": "example string 1"
}
}
}
}
]