forked from navapbc/branches
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.json
More file actions
executable file
·54 lines (53 loc) · 1.01 KB
/
graph.json
File metadata and controls
executable file
·54 lines (53 loc) · 1.01 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
{
"sections": {
"falling": {
"_control": { "initialNode": "rain" },
"rain": {
"name": "rain",
"_control": {
"next": "hillside"
}
},
"hillside": {
"name": "hillside",
"_control": {
"next": "canyon"
}
},
"canyon": {
"name": "canyon",
"_control": {
"next": "forest"
}
},
"forest": {
"name": "forest",
"_control": {
"next": "estuary"
}
},
"estuary": {
"name": "estuary",
"_control": {
"next": "ocean"
}
},
"ocean": { "name": "ocean" }
},
"rising": {
"_control": {
"initialNode": "steam"
},
"steam": {
"name": "steam",
"_control": { "next": "fog" }
},
"fog": {
"name": "fog",
"_control": { "next": "cloud" }
},
"cloud": { "name": "cloud" }
}
},
"sectionOrdering": ["falling", "rising"]
}