-
Notifications
You must be signed in to change notification settings - Fork 0
/
resurssienvaraus-graph.gvt
63 lines (53 loc) · 1.45 KB
/
resurssienvaraus-graph.gvt
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
strict digraph model_graph {
fontname = "Helvetica"
fontsize = 8
splines = true
node [
fontname = "Helvetica"
fontsize = 8
]
edge [
fontname = "Helvetica"
fontsize = 8
]
{{#c}}
{{name}} [shape=none, label=<
<TABLE BGCOLOR="#fffad2" BORDER="0" CELLBORDER="0" CELLSPACING="0">
<TR><TD COLSPAN="2" CELLPADDING="4" ALIGN="CENTER" BGCOLOR="#439eff">
<FONT FACE="Helvetica Bold" COLOR="white">
{{ title }}</FONT></TD></TR>
{{#properties}}
<TR><TD ALIGN="LEFT" BORDER="0">
<FONT FACE="Helvetica Bold">{{name}}</FONT>
</TD><TD ALIGN="LEFT">
<FONT FACE="Helvetica Bold">{{description}}</FONT>
</TD></TR>
{{/properties}}
</TABLE>
>]
{{/c}}
# subgraph cluster_components {
# label="Request components"
# request_georeport; request_citysdk; request_helsinki; request_6aika
# }
# subgraph cluster_api {
# label="API data types"
# Request; Service
# }
resource -> purpose
[arrowhead=odiamond, arrowtail=none, dir=both];
resource -> type
[arrowhead=odiamond, arrowtail=none, dir=both];
resource -> reservation
[arrowhead=dot, arrowtail=none, dir=both];
resource -> location
[arrowhead=dot, arrowtail=none, dir=both];
resource -> unit
[arrowhead=dot, arrowtail=none, dir=both];
unit -> location
[arrowhead=dot, arrowtail=none, dir=both];
reservation -> resource
[arrowhead=dot, arrowtail=none, dir=both];
reservation -> user
[arrowhead=dot, arrowtail=none, dir=both];
}