-
Notifications
You must be signed in to change notification settings - Fork 37
/
example.json
57 lines (57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"title": "TOML Example",
"owner": {
"name": "Tom Preston-Werner",
"organization": "GitHub",
"bio": "GitHub Cofounder & CEO\nLikes tater tots and beer.",
"dob": "1979-05-27T07:32:00+00:00"
},
"database": {
"server": "192.168.1.1",
"ports": [
8001,
8001,
8002
],
"connection_max": 5000,
"enabled": true
},
"servers": {
"alpha": {
"ip": "10.0.0.1",
"dc": "eqdc10"
},
"beta": {
"ip": "10.0.0.2",
"dc": "eqdc10",
"country": "中国"
}
},
"clients": {
"data": [
[
"gamma",
"delta"
],
[
1,
2
]
],
"hosts": [
"alpha",
"omega"
]
},
"products": [
{
"name": "Hammer",
"sku": 738594937
},
{
"name": "Nail",
"sku": 284758393,
"color": "gray"
}
]
}