source: josm/trunk/data/tagging-preset.xsd@ 5630

Last change on this file since 5630 was 5614, checked in by simon04, 11 years ago

see #8255 - suggest roles when adding objects to a relation

  • Property svn:mime-type set to text/plain
File size: 8.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://josm.openstreetmap.de/tagging-preset-1.0"
3 xmlns:tns="http://josm.openstreetmap.de/tagging-preset-1.0"
4 elementFormDefault="qualified">
5
6 <!-- Localized attributes (for example de.description are not supported
7 by xsd, so every element needs <anyAttribute/> To cover at least some common
8 errors, elements have specified prohibited attributes -->
9
10 <element name="annotations" type="tns:root" />
11 <element name="presets" type="tns:root" />
12
13 <complexType name="root">
14 <complexContent>
15 <extension base="tns:group-parent">
16 <attribute name="author" type="string" />
17 <attribute name="version" type="string" />
18 <attribute name="shortdescription" type="string" />
19 <attribute name="description" type="string" />
20 <attribute name="link" type="string" />
21
22 <anyAttribute processContents="skip" />
23 </extension>
24 </complexContent>
25 </complexType>
26
27 <complexType name="group-parent">
28 <sequence>
29 <choice minOccurs="1" maxOccurs="unbounded">
30 <element name="group" type="tns:group" />
31 <element name="item" type="tns:item" />
32 <element name="separator" type="tns:separator" />
33 </choice>
34 </sequence>
35 <attribute name="icon" type="string" />
36
37 <attribute name="type" use="prohibited" />
38 <attribute name="text" use="prohibited" />
39 <anyAttribute processContents="skip" />
40 </complexType>
41
42 <complexType name="group">
43 <complexContent>
44 <extension base="tns:group-parent">
45 <attribute name="name" type="string" use="required" />
46 </extension>
47 </complexContent>
48 </complexType>
49
50 <complexType name="separator" />
51
52 <complexType name="item">
53 <sequence>
54 <choice minOccurs="0" maxOccurs="unbounded">
55 <group ref="tns:optional_elements" />
56 <element name="key" type="tns:key" />
57 <element name="optional" type="tns:optional" minOccurs="0" />
58 </choice>
59 <element name="roles" type="tns:roles" minOccurs="0" maxOccurs="1" />
60 </sequence>
61 <attribute name="name" type="string" use="required" />
62 <attribute name="icon" type="string" />
63 <attribute name="type" type="string" />
64 <attribute name="name_template" type="string"/>
65 <attribute name="name_template_filter" type="string"/>
66
67 <attribute name="text" use="prohibited" />
68 <anyAttribute processContents="skip" />
69 </complexType>
70
71 <complexType name="optional">
72 <group ref="tns:optional_elements" maxOccurs="unbounded" />
73 </complexType>
74
75 <group name="optional_elements">
76 <choice>
77 <element name="label" type="tns:label" />
78 <element name="space" type="tns:space" />
79 <element name="link" type="tns:link" />
80 <element name="text" type="tns:text" />
81 <element name="combo" type="tns:combo" />
82 <element name="multiselect" type="tns:multiselect" />
83 <element name="check" type="tns:check" />
84 </choice>
85 </group>
86
87 <complexType name="key">
88 <attribute name="key" type="string" use="required" />
89 <attribute name="value" type="string" />
90 <attribute name="match" type="string" />
91 </complexType>
92
93
94 <complexType name="link">
95 <attribute name="href" type="string" use="required" />
96 <attribute name="text" type="string" />
97 <attribute name="text_context" type="string" />
98
99 <attribute name="name" use="prohibited" />
100 <anyAttribute processContents="skip" />
101 </complexType>
102
103 <complexType name="label">
104 <attribute name="text" type="string" use="required" />
105 <attribute name="text_context" type="string" />
106
107 <attribute name="name" use="prohibited" />
108 <anyAttribute processContents="skip" />
109 </complexType>
110
111 <complexType name="space" />
112
113 <complexType name="text">
114 <attribute name="key" type="string" use="required" />
115 <attribute name="text" type="string" />
116 <attribute name="text_context" type="string" />
117 <attribute name="default" type="string" />
118 <attribute name="use_last_as_default" type="tns:last_default" />
119 <attribute name="match" type="tns:match" />
120 <attribute name="length" type="positiveInteger" />
121
122 <attribute name="type" use="prohibited" />
123 <attribute name="name" use="prohibited" />
124 <attribute name="value" use="prohibited" />
125 <attribute name="values" use="prohibited" />
126 <anyAttribute processContents="skip" />
127 </complexType>
128
129 <complexType name="list_entry">
130 <attribute name="value" type="string" use="required" />
131 <attribute name="value_context" type="string" />
132 <attribute name="display_value" type="string" />
133 <attribute name="short_description" type="string" />
134 <attribute name="icon" type="string" />
135 <attribute name="icon_size" type="integer" />
136 </complexType>
137
138 <complexType name="combo">
139 <!-- use either list_entry's or a combination of values/display_values -->
140 <sequence>
141 <element name="list_entry" type="tns:list_entry" minOccurs="0" maxOccurs="unbounded" />
142 </sequence>
143 <attribute name="key" type="string" use="required" />
144 <attribute name="text" type="string" />
145 <attribute name="text_context" type="string" />
146 <attribute name="values" type="string" />
147 <attribute name="values_context" type="string" />
148 <attribute name="display_values" type="string" />
149 <attribute name="default" type="string" />
150 <attribute name="use_last_as_default" type="tns:last_default" />
151 <attribute name="editable" type="boolean" />
152 <attribute name="match" type="tns:match" />
153
154 <attribute name="type" use="prohibited" />
155 <attribute name="value" use="prohibited" />
156 <attribute name="name" use="prohibited" />
157 <attribute name="delete-if-empty" use="prohibited" />
158 <attribute name="display-values" use="prohibited" />
159 <anyAttribute processContents="skip" />
160 </complexType>
161
162 <complexType name="multiselect">
163 <attribute name="key" type="string" use="required" />
164 <attribute name="text" type="string" />
165 <attribute name="text_context" type="string" />
166 <attribute name="values" type="string" use="required" />
167 <attribute name="values_context" type="string" />
168 <attribute name="display_values" type="string" />
169 <attribute name="default" type="string" />
170 <attribute name="use_last_as_default" type="tns:last_default" />
171 <attribute name="delimiter" type="string" />
172 <attribute name="match" type="tns:match" />
173
174 <attribute name="type" use="prohibited" />
175 <attribute name="value" use="prohibited" />
176 <attribute name="name" use="prohibited" />
177 <attribute name="delete-if-empty" use="prohibited" />
178 <attribute name="display-values" use="prohibited" />
179 <anyAttribute processContents="skip" />
180 </complexType>
181
182 <complexType name="check">
183 <attribute name="key" type="string" use="required" />
184 <attribute name="text" type="string" />
185 <attribute name="text_context" type="string" />
186 <attribute name="default" type="tns:check_default" />
187 <attribute name="value_on" type="string" />
188 <attribute name="value_off" type="string" />
189 <attribute name="match" type="tns:match" />
190
191 <attribute name="name" use="prohibited" />
192 <attribute name="type" use="prohibited" />
193 <attribute name="value" use="prohibited" />
194 <anyAttribute processContents="skip" />
195 </complexType>
196
197 <simpleType name="check_default">
198 <restriction base="string">
199 <enumeration value="on" />
200 <enumeration value="off" />
201 </restriction>
202 </simpleType>
203
204 <simpleType name="last_default">
205 <restriction base="string">
206 <enumeration value="true" />
207 <enumeration value="false" />
208 <enumeration value="force" />
209 </restriction>
210 </simpleType>
211
212 <simpleType name="match">
213 <restriction base="string">
214 <enumeration value="none" />
215 <enumeration value="key" />
216 <enumeration value="key!" />
217 <enumeration value="keyvalue" />
218 </restriction>
219 </simpleType>
220
221 <complexType name="roles">
222 <sequence>
223 <element name="role" type="tns:role" minOccurs="1" maxOccurs="unbounded" />
224 </sequence>
225 </complexType>
226
227 <complexType name="role">
228 <attribute name="key" type="string" />
229 <attribute name="text" type="string" />
230 <attribute name="text_context" type="string" />
231 <attribute name="requisite" type="tns:role_requisite" />
232 <attribute name="type" type="string" />
233 <attribute name="count" type="integer" />
234 <attribute name="member_expression" type="string" />
235 </complexType>
236
237 <simpleType name="role_requisite">
238 <restriction base="string">
239 <enumeration value="required" />
240 <enumeration value="optional" />
241 </restriction>
242 </simpleType>
243
244</schema>
Note: See TracBrowser for help on using the repository browser.