-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_file.json
More file actions
70 lines (70 loc) · 1.11 KB
/
Copy pathsample_file.json
File metadata and controls
70 lines (70 loc) · 1.11 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"things": [
{
"name": "Alpha",
"value": 1,
"score": 100,
"weight": 3.0,
"enabled": true,
"comment": "plain string",
"details": [
{"key": "x", "val": 10},
{"key": "y", "val": 20}
]
},
{
"name": "Beta",
"value": 2,
"score": 250,
"weight": 5.0,
"enabled": false,
"comment": "another string",
"details": []
},
{
"name": "Gamma",
"value": 3,
"score": 75,
"weight": 1.5,
"enabled": true,
"comment": null,
"details": [
{"key": "z", "val": 30},
{"key": "w", "val": 40}
]
},
{
"name": "Delta",
"value": 4,
"score": 500,
"weight": 7.0,
"enabled": false,
"comment": "lines\nbreak\nhere",
"details": [
{"key": "a", "val": 1}
]
},
{
"name": "Epsilon",
"value": 5,
"score": 0,
"weight": 0.0,
"enabled": true,
"comment": "truthy",
"details": []
},
{
"name": "Zeta",
"value": 6,
"score": -10,
"weight": 2.0,
"enabled": true,
"comment": "negative score",
"details": [
{"key": "p", "val": 100},
{"key": "q", "val": 200},
{"key": "r", "val": 300}
]
}
]
}