-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCommonGraphFormat.txt
66 lines (61 loc) · 1011 Bytes
/
CommonGraphFormat.txt
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
Node
* Type [String]
* InstanceGuid [String]
* Ports [List of port]
* Position [Optional]
* MetaData
Position
* X [Number]
* Y [Number]
Port
* InstanceGuid [String]
* MetaData
Edge
* InstanceGuid [String]
* SrcGuid [String]
* DstGuid [String]
MetaData
* Ignore [XML Tree, not inspected for diff]
* Inspect [XML Tree, inspected for diff]
<CommonGraph>
<Nodes>
<Node Type="" InstanceGuid="">
<Ports>
<Port InstanceGuid="">
<MetaData>
<Ignore>
...
</Ignore>
<Inspect>
...
</Inspect>
</MetaData>
</Port>
</Ports>
<Position>
<X>20</X>
<Y>34</Y>
<MetaData>
<Ignore>
...
</Ignore>
<Inspect>
...
</Inspect>
</MetaData>
</Node>
...
</Nodes>
<Edges>
<Edge InstanceGuid="" SrcGuid="" DstGuid=""></Edge>
...
</Edges>
<MetaData>
<Ignore>
...
</Ignore>
<Inspect>
...
</Inspect>
</MetaData>
</CommonGraph>