-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson.json
More file actions
39 lines (38 loc) · 874 Bytes
/
json.json
File metadata and controls
39 lines (38 loc) · 874 Bytes
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
{
"title": "TOML Example with Numbers",
"owner": {
"name": "Tom Preston-Werner",
"dob": "1979-05-27T07:32:00-08:00"
},
"database": {
"enabled": true,
"ports": [2024, 1008, 500],
"data": [
["delta", "phi"],
[3.14, 0.001, 2.5e10]
],
"temp_targets": {
"cpu": 79.5,
"case": 72.0,
"gpu": -42.3
}
},
"servers": {
"alpha": {
"ip": "10.0.0.1",
"role": "frontend",
"max_connections": 255
},
"beta": {
"ip": "10.0.0.2",
"role": "backend",
"uptime": 1000000,
"load": -0.0125
}
},
"special_values": {
"positive_inf": "Infinity",
"negative_inf": "-Infinity",
"not_a_number": "NaN"
}
}