-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTermSet.xml
46 lines (39 loc) · 1.99 KB
/
TermSet.xml
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
<?xml version="1.0" ?>
<!-- TermSet.xml -->
<!--===================================================================-->
<xsd:schema xmlns:xsd = 'http://www.w3.org/2001/XMLSchema'>
<!--===================================================================-->
<xsd:include schemaLocation = 'CdrCommonSchema.xml'/>
<!--=====================================================================
TOP-LEVEL DOCUMENT ELEMENT
======================================================================-->
<xsd:element name = 'TermSet'
type = 'TermSet'/>
<!--=====================================================================
TermSet type
======================================================================-->
<xsd:complexType name = 'TermSet'>
<xsd:sequence>
<xsd:element name = 'TermSetName'
type = 'xsd:string'/>
<xsd:element name = 'TermSetType'
type = 'TermSetType'/>
<xsd:element name = 'TermSetMember'
type = 'TerminologyLink'
minOccurs = '0'
maxOccurs = 'unbounded'/>
<xsd:element name = 'GeneratedFrom'
type = 'TerminologyLink'
minOccurs = '0'/>
<xsd:element name = 'Comment'
type = 'Comment'
minOccurs = '0'
maxOccurs = 'unbounded'/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name = 'TermSetType'>
<xsd:restriction base = 'xsd:string'>
<xsd:enumeration value = 'diagnosis macro'/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>