forked from NCIOCPL/cdr-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdada.xsd
More file actions
21 lines (18 loc) · 757 Bytes
/
dada.xsd
File metadata and controls
21 lines (18 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" ?>
<xsd:schema xmlns:xsd = 'http://www.w3.org/2001/XMLSchema'>
<xsd:element name = 'dada'
type = 'dada'/>
<xsd:complexType name = 'dada'>
<xsd:sequence>
<xsd:element name = 'gimte'
type = 'gimte'
maxOccurs = 'unbounded'/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name = 'gimte'>
<xsd:restriction base = 'xsd:string'>
<xsd:enumeration value = 'Niedersachsen'/>
<xsd:enumeration value = 'Köln'/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>