-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdataflow.dot
More file actions
34 lines (24 loc) · 829 Bytes
/
dataflow.dot
File metadata and controls
34 lines (24 loc) · 829 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
digraph {
dump[label="JSON dump",style=dotted]
publications[label="publications",style=dotted]
classes[style=dotted]
dump -> classes
dump -> MD5
dump -> idsCount
dump -> allLabels
idsCount[label="count"]
classes -> pubtypes
dump -> publications
pubtypes -> publications
publications -> publicationsIdsCount
publicationsIdsCount[label="count"]
publications -> linkedIds [color=grey]
linkedIds[label="linked QIDs",style=dotted,color=grey]
allLabels[label="labels",style=dotted]
linkedLabels[label="linked labels",style=dotted, color=grey]
linkedIds -> linkedLabels [color=grey]
allLabels -> linkedLabels [color=grey]
publications -> bibdata [color=grey]
linkedLabels -> bibdata [color=grey]
bibdata[label="bibliographic data (CSL, RDF, MARC...)", color=grey, style=dotted]
}