-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuxml.xsd
3393 lines (3393 loc) · 188 KB
/
uxml.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
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="https://u.com" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="https://u.com">
<xs:element name="tpl" type="tplType"/>
<xs:complexType name="tplType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element ref="header" minOccurs="0" maxOccurs="1"/>
<xs:element ref="footer" minOccurs="0" maxOccurs="1"/>
<xs:element ref="HtmlElement" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="HtmlDocument" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="BreadCrumb" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ComponentGroup" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="EntityComponentBase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="LinkUmin" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="DecimalInputField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="TextInputField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="FormHeader" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="FormFooter" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="LinkDialog" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="MenuItem" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="Button" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="DevelopperToolbar" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ComponentProxy" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="FileField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="MessagesDisplay" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="GlobalMessagesDisplay" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="AutocompleteTextInputField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="CheckboxField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="CheckboxFieldGroup" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ComponentGroupField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="DateField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="DateTimeField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="EmailField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="HtmlAreaField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="IntInputField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="PasswordField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="SelectField" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="RadioGroupField" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:element name="header" type="headerType"/>
<xs:complexType name="headerType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="footer" type="footerType"/>
<xs:complexType name="footerType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:group name="basic">
<xs:sequence>
<xs:element name="className" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The dom class</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="equals" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>A reference to another component</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="visible" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field visible</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="layoutOnSmartPhone" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a smart phone device</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="layoutOnTablet" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a tablet device</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="layoutOnComputer" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a computer device</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="layoutOnAnyDevice" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="htmlWrapperTag" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The wrapper tag of the component</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:group>
<xs:attributeGroup name="basicAttr">
<xs:attribute name="u-if" use="optional" type="xs:string"/>
<xs:attribute name="className" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The dom class</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="equals" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>A reference to another component</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="id" use="optional" type="xs:string"/>
<xs:attribute name="visible" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field visible</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="layoutOnSmartPhone" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a smart phone device</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="layoutOnTablet" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a tablet device</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="layoutOnComputer" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component on a computer device</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="layoutOnAnyDevice" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display this component</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="htmlWrapperTag" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The wrapper tag of the component</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:group name="group">
<xs:sequence>
<xs:element name="requirePosition" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Include DOM class name First Last and Odd in html</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="layoutIfNoComponent" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Must we layout the component group if no component are in it</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="label" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="labelWrapperTag" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The description</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="header" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="footer" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="descriptionWrapperTag" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the description</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="renderersWrapperTag" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the list of component (ie: ul if the items of your list use li)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="renderersWrapperClassName" maxOccurs="1" minOccurs="0" type="xs:string"/>
</xs:sequence>
</xs:group>
<xs:attributeGroup name="groupAttr">
<xs:attribute name="requirePosition" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Include DOM class name First Last and Odd in html</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="layoutIfNoComponent" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Must we layout the component group if no component are in it</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="label" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The label</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="labelWrapperTag" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the label</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="description" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The description</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="header" use="optional" type="xs:string"/>
<xs:attribute name="footer" use="optional" type="xs:string"/>
<xs:attribute name="descriptionWrapperTag" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the description</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="renderersWrapperTag" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The html wrapper tag of the list of component (ie: ul if the items of your list use li)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="renderersWrapperClassName" use="optional" type="xs:string"/>
</xs:attributeGroup>
<xs:group name="field">
<xs:sequence>
<xs:element name="header" maxOccurs="1" minOccurs="0" type="headerForAttributeType"/>
<xs:element name="footer" maxOccurs="1" minOccurs="0" type="footerForAttributeType"/>
<xs:element name="entityProperties" maxOccurs="1" minOccurs="0" type="entityPropertiesForAttributeType"/>
<xs:element name="label" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The label usually show on top of the field to present what the user is supposed to do</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="updateServiceName" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to save the update of the field (ServiceSaveNewData)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="updateServiceArgs" maxOccurs="1" minOccurs="0" type="updateServiceArgsForAttributeType">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the update service</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="createServiceName" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to add (ServiceAdd)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="createServiceArgs" maxOccurs="1" minOccurs="0" type="createServiceArgsForAttributeType">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the create service</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="deleteServiceName" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to delete (ServiceDelete)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="deleteServiceArgs" maxOccurs="1" minOccurs="0" type="deleteServiceArgsForAttributeType">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the delete service</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="readServiceName" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to read (ServiceRead)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="readServiceArgs" maxOccurs="1" minOccurs="0" type="readServiceArgsForAttributeType">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the read service</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The description is usually below the label to describe more what is this field about</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="descriptionPosition" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The position of the description (either before or after)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="descriptionHtmlWrapperTag" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The tag wrapping the description</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="required" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field required</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="displayRequired" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display the star (*) next to the label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="readonly" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field a readonly one</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="disabled" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field disabled</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="autoComplete" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Does this field have autocomplete on</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="showButton" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Show we show the submit button</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="buttonLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The label displayed in the button (usually submit)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="useUIButton" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should we use a jquery ui button</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="requiredErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label show if the user did not complete the field</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="isUpdate" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isDelete" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="afterSaveSucceedSavable" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="inputAddOn" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="addInputWrapperHtml" maxOccurs="1" minOccurs="0" type="xs:string"/>
</xs:sequence>
</xs:group>
<xs:attributeGroup name="fieldAttr">
<xs:attribute name="header" use="optional" type="xs:string"/>
<xs:attribute name="footer" use="optional" type="xs:string"/>
<xs:attribute name="entityProperties" use="optional" type="xs:string"/>
<xs:attribute name="label" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The label usually show on top of the field to present what the user is supposed to do</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="updateServiceName" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to save the update of the field (ServiceSaveNewData)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="updateServiceArgs" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the update service</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="createServiceName" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to add (ServiceAdd)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="createServiceArgs" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the create service</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="deleteServiceName" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to delete (ServiceDelete)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="deleteServiceArgs" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the delete service</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="readServiceName" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the service to call to read (ServiceRead)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="readServiceArgs" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The additional arguments to pass to the read service</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="description" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The description is usually below the label to describe more what is this field about</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="descriptionPosition" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The position of the description (either before or after)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="descriptionHtmlWrapperTag" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The tag wrapping the description</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="required" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field required</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="displayRequired" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we display the star (*) next to the label</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="readonly" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field a readonly one</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="disabled" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Is this field disabled</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="autoComplete" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Does this field have autocomplete on</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="showButton" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Show we show the submit button</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="buttonLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The label displayed in the button (usually submit)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="useUIButton" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should we use a jquery ui button</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="requiredErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label show if the user did not complete the field</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="isUpdate" use="optional" type="xs:string"/>
<xs:attribute name="isDelete" use="optional" type="xs:string"/>
<xs:attribute name="afterSaveSucceedSavable" use="optional" type="xs:string"/>
<xs:attribute name="inputAddOn" use="optional" type="xs:string"/>
<xs:attribute name="addInputWrapperHtml" use="optional" type="xs:string"/>
</xs:attributeGroup>
<xs:complexType name="headerForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="footerForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="entityPropertiesForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="updateServiceArgsForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="createServiceArgsForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="deleteServiceArgsForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="readServiceArgsForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:group name="entity">
<xs:sequence>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType">
<xs:annotation>
<xs:documentation>The business entity</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:group>
<xs:attributeGroup name="entityAttr">
<xs:attribute name="entity" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The business entity</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:complexType name="entityForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:group name="menu">
<xs:sequence>
<xs:element name="url" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The url of the item</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="linkTarget" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>If the url needs target _blank or other, specify it</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:group>
<xs:attributeGroup name="menuAttr">
<xs:attribute name="url" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The url of the item</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="linkTarget" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>If the url needs target _blank or other, specify it</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:complexType name="HtmlElementType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:element name="content" maxOccurs="1" minOccurs="0" type="xs:string"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attribute name="content" use="optional" type="xs:string"/>
</xs:complexType>
<xs:element name="HtmlElement" type="HtmlElementType"/>
<xs:complexType name="HtmlDocumentType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:element name="header" maxOccurs="1" minOccurs="0" type="headerForAttributeType"/>
<xs:element name="content" maxOccurs="1" minOccurs="0" type="contentForAttributeType"/>
<xs:element name="footer" maxOccurs="1" minOccurs="0" type="footerForAttributeType"/>
<xs:element name="htmlHead" maxOccurs="1" minOccurs="0" type="htmlHeadForAttributeType"/>
<xs:element name="htmlFoot" maxOccurs="1" minOccurs="0" type="htmlFootForAttributeType"/>
<xs:element name="page" maxOccurs="1" minOccurs="0" type="pageForAttributeType"/>
<xs:element name="useAjaxLoading" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="ajaxReplacerClassSelector" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="transition" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="loadingString" maxOccurs="1" minOccurs="0" type="xs:string"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attribute name="header" use="optional" type="xs:string"/>
<xs:attribute name="content" use="optional" type="xs:string"/>
<xs:attribute name="footer" use="optional" type="xs:string"/>
<xs:attribute name="htmlHead" use="optional" type="xs:string"/>
<xs:attribute name="htmlFoot" use="optional" type="xs:string"/>
<xs:attribute name="page" use="optional" type="xs:string"/>
<xs:attribute name="useAjaxLoading" use="optional" type="xs:string"/>
<xs:attribute name="ajaxReplacerClassSelector" use="optional" type="xs:string"/>
<xs:attribute name="transition" use="optional" type="xs:string"/>
<xs:attribute name="loadingString" use="optional" type="xs:string"/>
</xs:complexType>
<xs:complexType name="contentForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="htmlHeadForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="htmlFootForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="pageForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="HtmlDocument" type="HtmlDocumentType"/>
<xs:complexType name="BreadCrumbType" mixed="true">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:group ref="group"/>
<xs:element name="separator" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The separator between each item of the breadcrumb</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="includeHome" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Should the breadcrumb include the home item</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="homeLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The label of the Home breadcrumb item</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType"/>
<xs:any minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attributeGroup ref="groupAttr"/>
<xs:attribute name="separator" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The separator between each item of the breadcrumb</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="includeHome" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Should the breadcrumb include the home item</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="homeLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The label of the Home breadcrumb item</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="entity" use="optional" type="xs:string"/>
</xs:complexType>
<xs:element name="BreadCrumb" type="BreadCrumbType"/>
<xs:complexType name="ComponentGroupType" mixed="true">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:group ref="group"/>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType"/>
<xs:any minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attributeGroup ref="groupAttr"/>
<xs:attribute name="entity" use="optional" type="xs:string"/>
</xs:complexType>
<xs:element name="ComponentGroup" type="ComponentGroupType"/>
<xs:complexType name="EntityComponentBaseType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:group ref="entity"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attributeGroup ref="entityAttr"/>
</xs:complexType>
<xs:element name="EntityComponentBase" type="EntityComponentBaseType"/>
<xs:complexType name="LinkUminType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType"/>
<xs:element name="propertyName" maxOccurs="1" minOccurs="0" type="xs:string"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attribute name="entity" use="optional" type="xs:string"/>
<xs:attribute name="propertyName" use="optional" type="xs:string"/>
</xs:complexType>
<xs:element name="LinkUmin" type="LinkUminType"/>
<xs:complexType name="DecimalInputFieldType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:group ref="field"/>
<xs:element name="maxDecimals" maxOccurs="1" minOccurs="0" type="maxDecimalsForAttributeType"/>
<xs:element name="centDelimiter" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="controllerParameterType" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="placeholderLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Content of the html placeholder attribute (does not work in IE7)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="showCounter" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Add a counter below the text input to show the number of characters/words typed by the user</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterMaxCharacterSize" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters allowed by the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterOriginaleStyle" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="counterWarningStyle" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="counterWarningNumber" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters typed by the user before showing the warning sign (not used by default)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterDisplayFormat" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isEmail" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isDigits" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isUrl" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isNumber" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isSimplePhone" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isDecimal" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="autoReplace" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="minValue" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The minimum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxValue" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="minLength" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The minumum length of the string before showing $minLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="minLengthErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is less than $minLength (Please, at least {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxLength" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum length of the string before showing $maxLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="useHtmlMaxLength" maxOccurs="1" minOccurs="0" type="useHtmlMaxLengthForAttributeType">
<xs:annotation>
<xs:documentation>Apply HTML attribute maxlength</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxLengthErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is more than $maxLength (Please, no more than {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="allowNegativValue" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="domType" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="emailErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an email ([email protected])</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="digitsErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not a series of digits (2343)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="urlErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an url (http://...)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="validRegexp" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="notValidRegexpLabel" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="useHtmlAutoFocus" maxOccurs="1" minOccurs="0" type="useHtmlAutoFocusForAttributeType">
<xs:annotation>
<xs:documentation>Apply HTML attribute autofocus</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="domInputName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="updateServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="createServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="readServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="value" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="saveOnFocusOut" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attributeGroup ref="fieldAttr"/>
<xs:attribute name="maxDecimals" use="optional" type="xs:string"/>
<xs:attribute name="centDelimiter" use="optional" type="xs:string"/>
<xs:attribute name="controllerParameterType" use="optional" type="xs:string"/>
<xs:attribute name="placeholderLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Content of the html placeholder attribute (does not work in IE7)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="showCounter" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Add a counter below the text input to show the number of characters/words typed by the user</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="counterMaxCharacterSize" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters allowed by the text input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="counterOriginaleStyle" use="optional" type="xs:string"/>
<xs:attribute name="counterWarningStyle" use="optional" type="xs:string"/>
<xs:attribute name="counterWarningNumber" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters typed by the user before showing the warning sign (not used by default)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="counterDisplayFormat" use="optional" type="xs:string"/>
<xs:attribute name="isEmail" use="optional" type="xs:string"/>
<xs:attribute name="isDigits" use="optional" type="xs:string"/>
<xs:attribute name="isUrl" use="optional" type="xs:string"/>
<xs:attribute name="isNumber" use="optional" type="xs:string"/>
<xs:attribute name="isSimplePhone" use="optional" type="xs:string"/>
<xs:attribute name="isDecimal" use="optional" type="xs:string"/>
<xs:attribute name="autoReplace" use="optional" type="xs:string"/>
<xs:attribute name="minValue" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The minimum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maxValue" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="minLength" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The minumum length of the string before showing $minLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="minLengthErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is less than $minLength (Please, at least {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maxLength" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum length of the string before showing $maxLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="useHtmlMaxLength" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Apply HTML attribute maxlength</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maxLengthErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is more than $maxLength (Please, no more than {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="allowNegativValue" use="optional" type="xs:string"/>
<xs:attribute name="domType" use="optional" type="xs:string"/>
<xs:attribute name="emailErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an email ([email protected])</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digitsErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not a series of digits (2343)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="urlErrorLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an url (http://...)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="validRegexp" use="optional" type="xs:string"/>
<xs:attribute name="notValidRegexpLabel" use="optional" type="xs:string"/>
<xs:attribute name="useHtmlAutoFocus" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Apply HTML attribute autofocus</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="domInputName" use="optional" type="xs:string"/>
<xs:attribute name="updateServiceParameterName" use="optional" type="xs:string"/>
<xs:attribute name="createServiceParameterName" use="optional" type="xs:string"/>
<xs:attribute name="readServiceParameterName" use="optional" type="xs:string"/>
<xs:attribute name="value" use="optional" type="xs:string"/>
<xs:attribute name="saveOnFocusOut" use="optional" type="xs:string"/>
<xs:attribute name="entity" use="optional" type="xs:string"/>
</xs:complexType>
<xs:complexType name="maxDecimalsForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="useHtmlMaxLengthForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="useHtmlAutoFocusForAttributeType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="DecimalInputField" type="DecimalInputFieldType"/>
<xs:complexType name="TextInputFieldType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:group ref="basic"/>
<xs:group ref="field"/>
<xs:element name="placeholderLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Content of the html placeholder attribute (does not work in IE7)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="showCounter" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>Add a counter below the text input to show the number of characters/words typed by the user</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterMaxCharacterSize" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters allowed by the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterOriginaleStyle" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="counterWarningStyle" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="counterWarningNumber" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum number of characters typed by the user before showing the warning sign (not used by default)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="counterDisplayFormat" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isEmail" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isDigits" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isUrl" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isNumber" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isSimplePhone" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="isDecimal" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="autoReplace" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="minValue" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The minimum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxValue" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum value that can be contained in the text input</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="minLength" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The minumum length of the string before showing $minLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="minLengthErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is less than $minLength (Please, at least {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxLength" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The maximum length of the string before showing $maxLengthErrorLabel</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="useHtmlMaxLength" maxOccurs="1" minOccurs="0" type="useHtmlMaxLengthForAttributeType">
<xs:annotation>
<xs:documentation>Apply HTML attribute maxlength</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="maxLengthErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is more than $maxLength (Please, no more than {0} characters are necessary)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="allowNegativValue" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="domType" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="emailErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an email ([email protected])</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="digitsErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not a series of digits (2343)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="urlErrorLabel" maxOccurs="1" minOccurs="0" type="xs:string">
<xs:annotation>
<xs:documentation>The error label shown to the user if his input is not an url (http://...)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="validRegexp" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="notValidRegexpLabel" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="useHtmlAutoFocus" maxOccurs="1" minOccurs="0" type="useHtmlAutoFocusForAttributeType">
<xs:annotation>
<xs:documentation>Apply HTML attribute autofocus</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="domInputName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="updateServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="createServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="readServiceParameterName" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="value" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="saveOnFocusOut" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="entity" maxOccurs="1" minOccurs="0" type="entityForAttributeType"/>
</xs:sequence>
<xs:attributeGroup ref="basicAttr"/>
<xs:attributeGroup ref="fieldAttr"/>
<xs:attribute name="placeholderLabel" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Content of the html placeholder attribute (does not work in IE7)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="showCounter" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Add a counter below the text input to show the number of characters/words typed by the user</xs:documentation>
</xs:annotation>