-
Notifications
You must be signed in to change notification settings - Fork 0
/
dx_schema.xsd
87 lines (87 loc) · 4.5 KB
/
dx_schema.xsd
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="ProjNet">
<xs:complexType>
<xs:sequence>
<xs:element name="DrChecks">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:int" name="ProjectID"/>
<xs:element type="xs:int" name="ProjectControlNbr"/>
<xs:element type="xs:string" name="ProjectName"/>
<xs:element type="xs:int" name="ReviewID"/>
<xs:element type="xs:string" name="ReviewName"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Comments">
<xs:complexType>
<xs:sequence>
<xs:element name="comment" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:int" name="id"/>
<xs:element type="xs:string" name="spec"/>
<xs:element type="xs:string" name="sheet"/>
<xs:element type="xs:string" name="detail"/>
<xs:element type="xs:string" name="critical"/>
<xs:element type="xs:string" name="commentText"/>
<xs:element type="xs:string" name="attachment"/>
<xs:element type="xs:string" name="DocRef"/>
<xs:element type="xs:string" name="createdBy"/>
<xs:element type="xs:string" name="createdOn"/>
<xs:element type="xs:string" name="status"/>
<xs:element type="xs:string" name="Discipline"/>
<xs:element type="xs:string" name="DocType"/>
<xs:element type="xs:string" name="CoordinatingDiscipline" minOccurs="0"/>
<xs:element name="evaluations">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="evaluation1" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:int" name="id"/>
<xs:element type="xs:int" name="comment"/>
<xs:element type="xs:string" name="status"/>
<xs:element type="xs:string" name="impactScope"/>
<xs:element type="xs:string" name="impactCost"/>
<xs:element type="xs:string" name="impactTime"/>
<xs:element type="xs:string" name="evaluationText"/>
<xs:element type="xs:string" name="attachment"/>
<xs:element type="xs:string" name="createdBy"/>
<xs:element type="xs:string" name="createdOn"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="backchecks">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="backcheck1" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:int" name="id"/>
<xs:element type="xs:int" name="comment"/>
<xs:element type="xs:int" name="evaluation"/>
<xs:element type="xs:string" name="status"/>
<xs:element type="xs:string" name="backcheckText"/>
<xs:element type="xs:string" name="attachment"/>
<xs:element type="xs:string" name="createdBy"/>
<xs:element type="xs:string" name="createdOn"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>