blob: 7d39337ce623ece302c5c95ae0401a6a4d2c538a (
plain)
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
|
digraph Schema {
mindist = 2.0
1 -> 5 [label="group"]
1 -> 5 [label="complexType"]
1 -> 2 [label="import"]
1 -> 2 [label="include"]
1 -> 2 [label="annotation"]
1 -> 3 [label="defaultOpenContent"]
1 -> 5 [label="simpleType"]
1 -> 5 [label="element"]
1 -> 5 [label="notation"]
1 -> 2 [label="override"]
1 -> 5 [label="attribute"]
1 -> 5 [label="attributeGroup"]
1 -> 2 [label="redefine"]
2 -> 5 [label="group"]
2 -> 5 [label="complexType"]
2 -> 2 [label="import"]
2 -> 2 [label="include"]
2 -> 2 [label="annotation"]
2 -> 3 [label="defaultOpenContent"]
2 -> 5 [label="simpleType"]
2 -> 5 [label="element"]
2 -> 5 [label="notation"]
2 -> 2 [label="override"]
2 -> 5 [label="attribute"]
2 -> 5 [label="attributeGroup"]
2 -> 2 [label="redefine"]
3 -> 5 [label="group"]
3 -> 5 [label="complexType"]
3 -> 4 [label="annotation"]
3 -> 5 [label="simpleType"]
3 -> 5 [label="element"]
3 -> 5 [label="notation"]
3 -> 5 [label="attribute"]
3 -> 5 [label="attributeGroup"]
4 -> 5 [label="group"]
4 -> 5 [label="complexType"]
4 -> 5 [label="simpleType"]
4 -> 5 [label="element"]
4 -> 5 [label="notation"]
4 -> 5 [label="attribute"]
4 -> 5 [label="attributeGroup"]
5 -> 5 [label="group"]
5 -> 5 [label="complexType"]
5 -> 6 [label="annotation"]
5 -> 5 [label="simpleType"]
5 -> 5 [label="element"]
5 -> 5 [label="notation"]
5 -> 5 [label="attribute"]
5 -> 5 [label="attributeGroup"]
6 -> 5 [label="group"]
6 -> 5 [label="complexType"]
6 -> 6 [label="annotation"]
6 -> 5 [label="simpleType"]
6 -> 5 [label="element"]
6 -> 5 [label="notation"]
6 -> 5 [label="attribute"]
6 -> 5 [label="attributeGroup"]
1 [shape=doublecircle, style=filled, color=blue]
2 [shape=doublecircle, style=filled, color=green]
3 [shape=doublecircle, style=filled, color=green]
4 [shape=doublecircle, style=filled, color=green]
5 [shape=doublecircle, style=filled, color=green]
6 [shape=doublecircle, style=filled, color=green]
}
|