-
Notifications
You must be signed in to change notification settings - Fork 7
/
sample.json
97 lines (97 loc) · 1.6 KB
/
sample.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"": {
"title": "TOML Example"
},
"database": {
"enabled": true,
"ports": [
8001,
8001,
8002
],
"connection_max": 5000,
"server": "192.168.1.1"
},
"clients": {
"regex": "<\\i\\c*\\s*>",
"winpath": "C:\\Users\\nodejs\\templates",
"quoted": "Tom \"Dubs\" Preston-Werner",
"key3": "The quick brown fox jumps over the lazy dog.",
"str2": "The quick brown fox jumps over the lazy dog.",
"str_quoted": "I'm a string. \"You can quote me\". Name\tJos\u00e9\nLocation\tSF.",
"lines": "The first newline is\ntrimmed in raw strings.\n All other whitespace\n is preserved.\n",
"str_multiline": "Roses are red\nViolets are blue",
"hosts": [
"alpha",
"omega"
],
"regex2": "I [dw]on't need \\d{2} apples",
"data": [
[
"gamma",
"delta"
],
[
1,
2
]
],
"winpath2": "\\\\ServerX\\admin$\\system32\\"
},
"servers": {
"alpha": {
"ip": "10.0.0.1",
"dc": "eqdc10"
},
"beta": {
"ip": "10.0.0.2",
"dc": "eqdc10"
}
},
"fruit": [
{
"variety": [
{
"name": "red delicious"
},
{
"name": "granny smith"
}
],
"name": "apple",
"physical": {
"color": "red",
"shape": "round"
}
},
{
"name": "banana",
"variety": [
{
"points": [
{
"y": 2,
"x": 1,
"z": 3
},
{
"y": 8,
"x": 7,
"z": 9
},
{
"y": 4,
"x": 2,
"z": 8
}
],
"name": "plantain"
}
]
}
],
"owner": {
"dob": "1979-05-27T15:32:00+00:00",
"name": "Tom Preston-Werner"
}
}