-
Notifications
You must be signed in to change notification settings - Fork 834
/
ExtensionManifest_v_7_0.xsd
639 lines (639 loc) · 54.9 KB
/
ExtensionManifest_v_7_0.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="ExtensionManifest">
<xs:annotation>
<xs:documentation>ExtensionManifest for CEP extensions.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Author" type="OptionalString" minOccurs="0">
<xs:annotation>
<xs:documentation>An optional author of this ExtensionBundle.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Contact" minOccurs="0">
<xs:annotation>
<xs:documentation>An optional contact for this ExtensionBundle.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="OptionalString">
<xs:attribute name="mailto" type="RequiredString" use="optional">
<xs:annotation>
<xs:documentation>An optional contact mail.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Legal" minOccurs="0">
<xs:annotation>
<xs:documentation>An optional legal notice for this ExtensionBundle.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="OptionalString">
<xs:attribute name="href" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>A link to a legal site.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Abstract" minOccurs="0">
<xs:annotation>
<xs:documentation>An optional abstract for this ExtensionBundle.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="OptionalString">
<xs:attribute name="href" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>A link to an abstract site.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ExtensionList">
<xs:annotation>
<xs:documentation>Contains a list of extensions defined in this ExtensionManifest.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Extension" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Declaration of an extension specified in this ExtensionManifest. There can be an arbitrary number of extension specified. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Id" type="ID" use="required">
<xs:annotation>
<xs:documentation>The id of the specific extension. This id has to be unique within the whole CEP system. Recommendation is to use reverse domain names. This id is used within the ExtensionManifest as reference in other tags.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Version" type="Version" use="optional">
<xs:annotation>
<xs:documentation>The version of the specific extension.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExecutionEnvironment">
<xs:complexType>
<xs:sequence>
<xs:element name="HostList" minOccurs="0">
<xs:annotation>
<xs:documentation>Contains a list of all supported hosts.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Host" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The host defines a supported product.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Name" type="RequiredString" use="required">
<xs:annotation>
<xs:documentation>The name must be the enigma code of the supported point product.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Version" type="RangedVersion" use="required">
<xs:annotation>
<xs:documentation>A version range for this host. See the RangedVersion type for information. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="LocaleList" minOccurs="0">
<xs:annotation>
<xs:documentation>Contains a list for all supported locales.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Locale" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Contains an entry for a supported code. The code must be given in the form xx_XX or as All to specify that all locales are supported.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Code" type="RequiredString" use="required">
<xs:annotation>
<xs:documentation>The language code in the form xx_XX or All.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RequiredRuntimeList" minOccurs="0">
<xs:annotation>
<xs:documentation>Contains a list for all required runtimes. The absence for any runtime implies no requirement.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="RequiredRuntime" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies runtimes which must be available in order for the extension to run. For CS5 and CS5.5, the CEP runtime version is 2.0; for CS6, it is 3.0; for CC 2013, it is 4.0; for CC 2014, it is 5.0. Specifying an accurate CEP runtime requirement is recommended, since this value enables (though does not guarantee) compatibility with future versions of CEP. If no CEP runtime requirement is specified, the target CEP runtime is assumed to be 2.0 and above. This is significant, because extensions which target older CEP runtime versions may not be loaded by future versions of CEP.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Name" use="required">
<xs:annotation>
<xs:documentation>Name of the runtime.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="CSXS"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Version" type="RangedVersion" use="required">
<xs:annotation>
<xs:documentation>A version range for this runtime. See the RangedVersion type for information.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DispatchInfoList">
<xs:annotation>
<xs:documentation>Contains a list for every extension's attributes.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Extension" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Declaration of the extension for which the following list of DispatchInfos is declared.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="HostList" minOccurs="0">
<xs:annotation>
<xs:documentation>The "HostList" tag allows the user to define a host list specific to each extension by overriding both the optional "Host" attribute in the "DispatchInfo" tag and the "HostList" tag under the "ExecutionEnvrironment" tag. If no "HostList" tag is defined, either the optional "Host" attribute or the the default host list will be used.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Host" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The host defines a supported product.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Name" type="RequiredString" use="required">
<xs:annotation>
<xs:documentation>The name must be the enigma code of the supported point product.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DispatchInfo" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A DispatchInfo contains all parameter which are needed to run an extension. A DispatchInfo can have an optional attribute "Host" to define specific attributes per "Host". If an DispatchInfo has no "Host" it will act as a default for all values which are not set in a specific Host-DispatchInfo.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Resources" minOccurs="0">
<xs:annotation>
<xs:documentation>The Resources tag contains all resources (source files) to run the extension.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="MainPath" type="RelativePathLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The MainPath contains the path to the extension's main content file (e.g. main.swf / index.html). The path has to be relative to the extensions root directory and start with a "./". Use "/" as path delimiter. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ScriptPath" minOccurs="0">
<xs:annotation>
<xs:documentation>The ScriptPath contains the path to the extension's script file. The path has to be relative to the extensions root directory and start with a "./". Use "/" as path delimiter. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="RelativePathLoc">
<xs:attribute name="Engine" type="RequiredStringLoc" use="optional">
<xs:annotation>
<xs:documentation>This defines an optional ID for the ExtendsScript engine. This can be used to run different scripts in the same engine. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="CEFCommandLine" minOccurs="0">
<xs:annotation>
<xs:documentation>Contains a list of CEF command line parameters.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Parameter" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>One CEF command line parameter</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Lifecycle" minOccurs="0">
<xs:annotation>
<xs:documentation>In the Lifecycle the extension can specify its desired behavior regarding startup and shutdown.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AutoVisible" minOccurs="0">
<xs:annotation>
<xs:documentation>This flag controls whether the extension's UI should be made visible automatically when started or if the extension wants to control this itself. Panel type extensions should always be made visible automatically in order to maintain consistency with non-CEP panels. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true"/>
<xs:enumeration value="false"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="LocalizableString"/>
</xs:simpleType>
</xs:union>
</xs:simpleType>
</xs:element>
<xs:element name="StartOn" minOccurs="0">
<xs:annotation>
<xs:documentation>With StartOn the extension can define different ways to start itself.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Event" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies zero or more events on which the extension should be started. The name of the event has to be the fully qualified event id. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="RequiredStringLoc"/>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UI" minOccurs="0">
<xs:annotation>
<xs:documentation>Defines UI related properties of the extension.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Type" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the type of the extension. Note that the "Custom" type means that it is up to the point product to decide how this extension will be handled. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Panel"/>
<xs:enumeration value="ModalDialog"/>
<xs:enumeration value="Modeless"/>
<xs:enumeration value="Custom"/>
<xs:enumeration value="Embedded"/>
<xs:enumeration value="Dashboard"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="LocalizableString"/>
</xs:simpleType>
</xs:union>
</xs:simpleType>
</xs:element>
<xs:element name="Menu" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the name for the menu entry. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="RequiredStringLoc">
<xs:attribute name="Placement" type="RequiredStringLoc" use="optional">
<xs:annotation>
<xs:documentation>A special placement which doesn't have to be honored by the point products. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Geometry" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies the geometry of the extension. Please note that all elements are onle "preferred" values. Some point products will not support all of these values. These values can be overwritten by an AIR extension through the AIR window API.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="ScreenPercentage" minOccurs="0">
<xs:annotation>
<xs:documentation>If values are provided here both have to be specified. Note that those values can be scattered over different DispatchInfos.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Height" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The percentage for height based on the screen size.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Width" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The percentage for width based on the screen size.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Size" minOccurs="0">
<xs:annotation>
<xs:documentation>If values are provided here both have to be specified. Note that those values can be scattered over different DispatchInfos.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Height" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The height. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Width" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The width. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="MaxSize" minOccurs="0">
<xs:annotation>
<xs:documentation>If values are provided here both have to be specified. Note that those values can be scattered over different DispatchInfos.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Height" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The height. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Width" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The width. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="MinSize" minOccurs="0">
<xs:annotation>
<xs:documentation>If values are provided here both have to be specified. Note that those values can be scattered over different DispatchInfos.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Height" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The height. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Width" type="SizeLoc" minOccurs="0">
<xs:annotation>
<xs:documentation>The width. If not provided this will default to the system default or any value set in the AIR API. This value is localizable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Icons" minOccurs="0">
<xs:annotation>
<xs:documentation>Icons provided for the UI of this extension.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Icon" minOccurs="0" maxOccurs="5">
<xs:annotation>
<xs:documentation>A specific icon for a given type. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="RelativePathLoc">
<xs:attribute name="Type" use="required">
<xs:annotation>
<xs:documentation>The type of the icon.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Normal"/>
<xs:enumeration value="Disabled"/>
<xs:enumeration value="RollOver"/>
<xs:enumeration value="DarkNormal"/>
<xs:enumeration value="DarkRollOver"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExtensionData" minOccurs="0">
<xs:annotation>
<xs:documentation>This section contains arbitrary information about this extension. This value is localizable.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="Host" type="RequiredString" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="DependencyList" minOccurs="0">
<xs:annotation>
<xs:documentation>Specifies a list of extensions which this extension depends upon. Adobe Extension Manager will install this extension only if all of its strict dependencies are already installed in the system.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Dependency" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Specifies an extension which this extension depends on.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Id" type="ID" use="required">
<xs:annotation>
<xs:documentation>The id of the extension which is depended upon.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Version" type="InclusiveRangedVersion" use="optional">
<xs:annotation>
<xs:documentation>Specifies that a particular version of the extension is depended upon. Either a single version or a range of versions may be specified. A range of versions must be specified using inclusive lower and upper bounds; exclusive bounds are not allowed. Omitting this attribute indicates that no specific version is required.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="Id" type="ID" use="required">
<xs:annotation>
<xs:documentation>The id of the extension. This must refer to an extension defined in /ExtensionManifest/ExtensionList/Extension.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="Version" use="required">
<xs:annotation>
<xs:documentation>The version of this ExtensionManifest.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="7.0"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="ExtensionBundleId" type="ID" use="required">
<xs:annotation>
<xs:documentation>The Id for all extensions included in this ExtensionManifest.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExtensionBundleVersion" type="Version" use="required">
<xs:annotation>
<xs:documentation>The version of this ExtensionBundle.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExtensionBundleName" type="RequiredString" use="optional">
<xs:annotation>
<xs:documentation>An optional user-friendly name for this ExtensionBundle.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:simpleType name="ID">
<xs:annotation>
<xs:documentation>An ID.</xs:documentation>
</xs:annotation>
<xs:restriction base="RequiredString">
<xs:pattern value="[A-Za-z0-9._\-]+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Version">
<xs:annotation>
<xs:documentation>A version consists of major.minor.micro.special. major, minor, micro must be numbers and special can be any string (version parts can have up to 9 digits). At least the major has to be specified, all other elements are optional. If minor or micro versions are not specified, they are assumed to be zero. When it comes to comparing versions the special discriminator will be compared based on UTF-8 encoding.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RangedVersion">
<xs:annotation>
<xs:documentation>A ranged version defines at least a minimum version and optionally a maximum version. If only one version is specified it is taken as minimum version with no special maximum version. With "[","]", "(" and ")" inclusive and exclusive ranges can be specified. For example, to define a range from 7.0 to 7.5 inclusive, use [7.0,7.5]. Note that because unspecified versions are assumed to be zero, 7.5.1 is not included in this range. To include 7.5.1 and any other micro version changes, use the range [7.0,7.6) which includes versions greater than 7.0.0 but less than 7.6.0. See definition of Version for further information.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?)|([(\[]\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?,?\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?[)\]])"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="InclusiveRangedVersion">
<xs:annotation>
<xs:documentation>An InclusiveRangedVersion is the same as a RangedVersion, except that only a single version or an inclusive version range may be specified (using "[","]" notation). An exclusive version range cannot be specified.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="(\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?)|(\[\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?,?\d{1,9}(\.\d{1,9}(\.\d{1,9}(\.(\w|_|-)+)?)?)?\])"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RelativePath">
<xs:annotation>
<xs:documentation>A relative path always has to start with ./ and points to a resource relative to the extension bundle's root.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="\./.+"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RelativePathLoc">
<xs:annotation>
<xs:documentation>A RelativePath element which can also be localized.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="RelativePath LocalizableString"/>
</xs:simpleType>
<xs:simpleType name="RequiredString">
<xs:annotation>
<xs:documentation>A string with at least one element.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="RequiredStringLoc">
<xs:annotation>
<xs:documentation>A RequiredString which can also be localized.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="RequiredString LocalizableString"/>
</xs:simpleType>
<xs:simpleType name="OptionalString">
<xs:annotation>
<xs:documentation>An optional string.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="OptionalStringLoc">
<xs:annotation>
<xs:documentation>An OptionalString which can also be localized.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="OptionalString LocalizableString"/>
</xs:simpleType>
<xs:simpleType name="LocalizableString">
<xs:annotation>
<xs:documentation>A string which has to start with '%'. This string denotes a key which will be replaced by the appropriate value from the messages.properties file for the current language.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="2"/>
<xs:pattern value="%[^%].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="Size">
<xs:annotation>
<xs:documentation>A size which can be a positive number or 0.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedInt"/>
</xs:simpleType>
<xs:simpleType name="SizeLoc">
<xs:annotation>
<xs:documentation>A Size which can also be localized.</xs:documentation>
</xs:annotation>
<xs:union memberTypes="Size LocalizableString"/>
</xs:simpleType>
</xs:schema>