-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
118 lines (116 loc) · 2.31 KB
/
data.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"nodes": [
{
"id": 1,
"name": "Rack 1",
"image": "img/rack1.png",
"description": "Rack 1 description"
},
{
"id": 2,
"name": "Rack 2",
"image": "img/rack2.png",
"description": "Rack 2 description"
},
{
"id": 3,
"name": "Tower 2",
"image": "img/tower.png",
"description": "Rack 3 description"
},
{
"id": 4,
"name": "Tower 1",
"image": "img/tower.png",
"description": "Rack 4 description"
},
{
"id": 5,
"name": "Rack 5",
"image": "img/rack2.png",
"description": "Rack 5 description"
},
{
"id": 6,
"name": "Rack 6",
"image": "img/rack2.png",
"description": "Rack 6 description"
},
{
"id": 7,
"name": "Tower 3",
"image": "img/tower.png",
"description": "Rack 7 description"
},
{
"id": 8,
"name": "Tower 4",
"image": "img/tower.png",
"description": "Rack 8 description"
},
{
"id": 9,
"name": "Rack 9",
"image": "img/rack2.png",
"description": "Rack 9 description"
},
{
"id": 10,
"name": "Rack 10",
"image": "img/tower.png",
"description": "Rack 10 description"
}
],
"links": [
{
"source_id": 1,
"target_id": 2,
"title": "link 1-2"
},
{
"source_id": 2,
"target_id": 3,
"title": "link 2-3"
},
{
"source_id": 2,
"target_id": 4,
"title": "link 2-4"
},
{
"source_id": 2,
"target_id": 7,
"title": "link 7-2"
},
{
"source_id": 3,
"target_id": 7,
"title": "link 3-7"
},
{
"source_id": 8,
"target_id": 3,
"title": "link 8-3"
},
{
"source_id": 8,
"target_id": 7,
"title": "link 8-7"
},
{
"source_id": 8,
"target_id": 4,
"title": "link 8-4"
},
{
"source_id": 3,
"target_id": 4,
"title": "link 3-4"
},
{
"source_id": 5,
"target_id": 10,
"title": "link 5-10"
}
]
}