-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadditional_text.xsd
117 lines (117 loc) · 3.06 KB
/
additional_text.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<!--W3C Schema generated by XMLSPY v5 U (http://www.xmlspy.com)-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="croatian">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="dutch">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="english">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="french">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="german">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="italian">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="portuguese">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="romanian">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="slovene">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="text">
<xs:complexType>
<xs:sequence>
<xs:element ref="croatian"/>
<xs:element ref="dutch"/>
<xs:element ref="english"/>
<xs:element ref="french"/>
<xs:element ref="german"/>
<xs:element ref="italian"/>
<xs:element ref="portuguese"/>
<xs:element ref="romanian"/>
<xs:element ref="slovene"/>
<xs:element ref="turkish"/>
</xs:sequence>
<xs:attribute name="id" use="required" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="texts">
<xs:complexType>
<xs:sequence>
<xs:element ref="text" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="turkish">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="ul"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="ul">
<xs:complexType>
<xs:sequence>
<xs:element ref="li" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="li" type="xs:string"/>
<xs:element name="p" type="xs:string"/>
</xs:schema>