File: rsxsdResponseContent.htm

package info (click to toggle)
office2003-schemas 1.0%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 42,304 kB
  • sloc: javascript: 2,429; makefile: 29
file content (1441 lines) | stat: -rw-r--r-- 70,182 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
<html dir="ltr"><head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="assetid" CONTENT="HV01084527"><META NAME="lcid" CONTENT="1033"><title>Microsoft.Search.Response.Content Schema</title><link rel="stylesheet" type="text/css" href="office10.css"><script type="text/javascript" language="Javascript" src="ExpCollapse.js"></script><script type="text/javascript" language="JavaScript" src="inline.js"></script></head><body><h1>Microsoft.Search.Response.Content Schema</h1><p>This topic contains the annotated text of the Microsoft.Search.Response.Content.xsd schema file. For additional information about this schema, see <a href="rsxsdResponseContentDocs.htm" id="HV01087688" lcid=" ">Microsoft.Search.Response.Content Schema Documentation</a>.</p><pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt;
&lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
&lt;!-- Schema: Response.Content.xsd                                --&gt;
&lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    targetNamespace="urn:Microsoft.Search.Response.Content" 
    xmlns="urn:Microsoft.Search.Response.Content" 
    elementFormDefault="qualified" 
    xmlns:t="urn:Microsoft.Search.Types"&gt;
    &lt;xsd:annotation&gt;
        &lt;xsd:documentation&gt;
            This document is provided for informational purposes 
            only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED,
            AS TO THE INFORMATION IN THIS DOCUMENT. Complying with 
            all applicable copyright laws is the responsibility of 
            the user.  Microsoft may have patents, patent 
            applications, trademarks, copyrights, or other 
            intellectual property rights covering subject matter in 
            this document. Except as expressly provided in any 
            written license agreement from Microsoft, the furnishing
            of this document does not give you any license to these 
            patents, trademarks, copyrights, or other intellectual 
            property. (c) 2003 Microsoft Corporation. All rights 
            reserved.
        &lt;/xsd:documentation&gt;
        &lt;xsd:documentation&gt;
            Defines rich content and actions that can be returned 
            as results.
        &lt;/xsd:documentation&gt;
    &lt;/xsd:annotation&gt;
    &lt;xsd:import schemaLocation="Microsoft.Search.Types.xsd" 
        namespace="urn:Microsoft.Search.Types" /&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Root Element: Content                             --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:element name="Content"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Rich content and actions associated with it.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:complexType&gt;
            &lt;xsd:sequence minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:group ref="HeadingGroup"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            All possible content elements, which 
                            can be used in any order.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:group&gt;
            &lt;/xsd:sequence&gt;
            &lt;xsd:attribute name="revision" 
                type="xsd:unsignedInt" use="optional"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Unsigned integer indicating the revision 
                        of the schema used in the response.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:attribute&gt;
            &lt;xsd:attribute name="build" 
                type="t:String255" use="optional"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The build of the component used to 
                        generate the response.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:attribute&gt;
            &lt;xsd:attribute name="rtl" 
                type="xsd:boolean" use="optional"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        If set to 'true' then the content is 
                        right-to-left.  If set to 'false' then 
                        the content is left-to-right.  If 
                        unspecified, the system will choose.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:attribute&gt;
        &lt;/xsd:complexType&gt;
    &lt;/xsd:element&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Group: HeadingGroup                               --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:group name="HeadingGroup"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines all possible content elements.
                &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:choice&gt;
            &lt;xsd:element name="Tabular" type="TabularType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A simple two-column table.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Heading" type="HeadingType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A Heading that may have content under it.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Hyperlink" type="HyperlinkNavType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A hyperlink.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="NewQuery" type="NewQueryContentType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A hyperlink that launches a new query.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Image" type="ImageType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An image or icon.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="HorizontalRule"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A horizontal line that acts as a separator.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Line" type="LineType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A set of content controls that display side 
                        by side where possible.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="P" type="ParagraphType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A paragraph of text.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Actions" type="ActionType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Actions for content.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Insert" type="InsertType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An insert button.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Copy" type="CopyType"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A copy button.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:choice&gt;
    &lt;/xsd:group&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: TabularType                                 --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="TabularType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a simple two-column table.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Record" type="RecordType" 
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A table record or row.  The table can have 
                        any number of them.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="title" type="xsd:string" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    A title for the table.  It is bolded and appears 
                    above the table.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="rtl" type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' the table is right-to-left.
                    If set to 'false' the table is left-to-right.
            &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: RecordType                                  --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="RecordType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a table record.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Name" type="NameType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A name in a name-value pair 
                        within a table record.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Value" type="ValueType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A value in a name-value pair 
                        within a table record.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Actions" 
                type="ShortActionType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An actions menu for the record.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="borders" 
            type="xsd:boolean" use="optional" default="true"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'false' then suppress the 
                    border for the record.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="rtl" type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' the record is right-to-left.  
                    If set to 'false' the record is left-to-right.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: NameType                                    --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="NameType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a name in a name-value pair 
                within a table record.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:simpleContent&gt;
            &lt;xsd:extension base="xsd:string"&gt;
                &lt;xsd:attribute name="bold" type="xsd:boolean" 
                    use="optional" default="false"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' then the text is bold.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
                &lt;xsd:attribute name="rtl" 
                    type="xsd:boolean" use="optional"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' the 
                            text is right-to-left.  
                            If set to 'false' the 
                            text is left-to-right.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
            &lt;/xsd:extension&gt;
        &lt;/xsd:simpleContent&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ValueType                                   --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="ValueType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a value in a name-value 
                pair within a table record.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:simpleContent&gt;
            &lt;xsd:extension base="xsd:string"&gt;
                &lt;xsd:attribute name="bold" type="xsd:boolean" 
                    use="optional" default="false"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' then the text is bold.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
                &lt;xsd:attribute name="rtl" 
                    type="xsd:boolean" use="optional"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' then the text is 
                            right-to-left.  If set to 'false' then 
                            the text is left-to-right.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
            &lt;/xsd:extension&gt;
        &lt;/xsd:simpleContent&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ShortActionType                             --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="ShortActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines an actions menu for a table record.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Insert" 
                type="InsertActionType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An action used to insert text.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Copy" 
                type="CopyActionType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An action used to copy text to the clipboard.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:sequence minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:choice&gt;
                    &lt;xsd:element name="Data" type="xsd:string"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                The data to be inserted or copied by 
                                the Insert or Copy actions.  Multiple 
                                Data islands will be copied/inserted 
                                as multiple paragraphs.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                    &lt;xsd:element name="NewQuery" 
                        type="NewQueryActionType"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                An action that launches a new query.  
                                IMPORTANT: Due to a limitation only 
                                one NewQuery element should be used 
                                within a given ShortActionType.  
                                Multiple ones will not work 
                                appropriately.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                    &lt;xsd:element name="Hyperlink" 
                        type="HyperlinkActionType"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                An action that launches a hyperlink.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                &lt;/xsd:choice&gt;
            &lt;/xsd:sequence&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="defaultAllowed" 
            type="xsd:boolean" use="optional" default="true"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'false' no default action is allowed.  
                    The default action is executed when the user 
                    clicks the record as opposed to clicking the 
                    record's action menu.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: HeadingType                                 --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="HeadingType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a Heading with content under it.  
                The Heading can be collapsible.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the Heading.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:group ref="HeadingGroup" 
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The contents under the Heading, which can 
                        be text and other controls.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:group&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="collapsible" type="xsd:boolean" 
            use="optional" default="true"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'false' the contents of the heading 
                    are always visible and cannot be collapsed.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="collapsed" 
            use="optional" default="auto"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Only valid if @collapsible is 'true'; it 
                    determines the initial display state of 
                    the Heading.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
            &lt;xsd:simpleType&gt;
                &lt;xsd:restriction base="xsd:string"&gt;
                    &lt;xsd:enumeration value="false"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                The heading is not initially collapsed.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:enumeration&gt;
                    &lt;xsd:enumeration value="true"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                The heading is initially collapsed.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:enumeration&gt;
                    &lt;xsd:enumeration value="auto"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                The system will determine whether the 
                                heading is collapsed or not.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:enumeration&gt;
                &lt;/xsd:restriction&gt;
            &lt;/xsd:simpleType&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="level" use="optional" default="1"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The indentation level of the heading.  By default 
                    the level is calculated based on nesting, but it 
                    can be explicitly set if a specific indentation 
                    is desired.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
            &lt;xsd:simpleType&gt;
                &lt;xsd:restriction base="xsd:integer"&gt;
                    &lt;xsd:minInclusive value="1" /&gt;
                    &lt;xsd:maxInclusive value="4" /&gt;
                &lt;/xsd:restriction&gt;
            &lt;/xsd:simpleType&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: HyperlinkNavType                            --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="HyperlinkNavType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a hyperlink.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text of the hyperlink.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="url" 
            type="xsd:anyURI" use="required"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The URL to be launched.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="tooltip" 
            type="t:String2048" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    An optional tooltip.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="font" type="Font" 
            use="optional" default="normal"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The font type of the hyperlink.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="forPay" type="xsd:boolean" 
            use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' it indicates that the link 
                    takes the user to paid content through a 
                    special currency icon.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: NewQueryContentType                         --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="NewQueryContentType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a link that launches a new query.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the NewQuery.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="query" 
            type="xsd:string" use="required"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The actual query to be sent 
                    when the link is clicked.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="tooltip" 
            type="t:String2048" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    An optional tooltip.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="category" 
            type="t:CategoryType" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Category or group of services to be searched.  
                    If not specified, the currently selected set 
                    of services is searched.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="font" type="Font" 
            use="optional" default="normal"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The font type of the link.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ImageType                                   --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="ImageType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines an image, which can come from a URL, 
                a file path, or a specific icon.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:attribute name="tooltip" 
            type="t:String2048" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    An optional tooltip.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="source" 
            type="xsd:anyURI" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Path to the image.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="altText" 
            type="xsd:string" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Alternative text associated with the image.  
                    Used by accessibility tools.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="icon" type="xsd:string" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    This attribute is used to generate an icon 
                    automatically. It can be: (a) a path to a 
                    file (e.g. "http://foo.htm"), in which case 
                    we use the icon corresponding to the file type, 
                    (b) a file extension (e.g. ".doc"), in which 
                    case the behavior is also to use the icon for 
                    the file type, (c) a string representing any 
                    of the built-in icons, "Research", "Spelling", 
                    "FileSearch", or "Help". These will display 
                    the standard Research icon, the standard 
                    Spelling icon, the standard File Search icon, 
                    and the standard Help icon, respectively.  
                    This overrides the @source attribute.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: LineType                                    --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="LineType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a group of controls, which display 
                side-by-side if possible.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:choice minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:element name="Hyperlink" 
                    type="HyperlinkNavType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            A hyperlink.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Char" type="CharType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            A run of text with optional formatting.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Image" type="ImageType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            An image.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="NewQuery" 
                    type="NewQueryContentType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            A hyperlink that launches a new query.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Actions" type="ActionType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            Actions for content, 
                            presented as a button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Insert" type="InsertType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            An insert button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Copy" type="CopyType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            A copy button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
            &lt;/xsd:choice&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="rtl" type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the line is right-to-left.  
                    If set to 'false' then the line is left-to-right.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CharType                                    --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="CharType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a character string within a Line element.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:simpleContent&gt;
            &lt;xsd:extension base="xsd:string"&gt;
                &lt;xsd:attributeGroup ref="CharAttributes"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            Group of character formatting attributes.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attributeGroup&gt;
                &lt;xsd:attribute name="noPadding" type="xsd:boolean" 
                    use="optional" default="false"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' then there is no padding 
                            between the character run and its 
                            adjacent elements.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
            &lt;/xsd:extension&gt;
        &lt;/xsd:simpleContent&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ParagraphType                               --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="ParagraphType" mixed="true"&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Char" type="CharTypeNested"
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A run of text with optional formatting.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:choice minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:element name="Actions" type="ActionType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            Actions for content, 
                            presented as a button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Insert" type="InsertType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            An insert button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
                &lt;xsd:element name="Copy" type="CopyType"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            A copy button.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:element&gt;
            &lt;/xsd:choice&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attributeGroup ref="CharAttributes" /&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CharTypeNested                              --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="CharTypeNested" mixed="true"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a character string within a P element.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Char" type="CharTypeNested" 
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A nested character string within a P element.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attributeGroup ref="CharAttributes"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Group of character formatting attributes.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attributeGroup&gt;
        &lt;xsd:attribute name="noPadding" type="xsd:boolean" 
            use="optional" default="true"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'false' then padding is added between 
                    the character run and its adjacent elements.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Attribute Group: CharAttributes                   --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:attributeGroup name="CharAttributes"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines shared font formatting attributes.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:attribute name="bold" type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is bold.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="italic" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is italicized.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="smallCaps" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is small caps.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="underline" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is underlined.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="light" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is light.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="superscript" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is superscript.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="subscript" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is subscript.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="rtl" 
            type="xsd:boolean" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the text is right-to-left.  
                    If set to 'false' then the text is left-to-right.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="font" 
            type="Font" use="optional" default="normal"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The font type of the text.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:attributeGroup&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: Font                                        --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="Font"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a font type for text.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:enumeration value="arial"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Arial font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="bookshelf symbol"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Bookshelf font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="courier"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Courier New font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="gothic"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        MS PGothic font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="lucida console"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Lucida Console font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="marlett"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Marlett font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="normal"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Default user interface font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="reference"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        MS Reference font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="reference serif"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        MS Reference Sans Serif font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="symbol"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Symbol font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="times"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Times New Roman font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="unicode"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        A Unicode-enabled font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="wingdings"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Wingdings font.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ActionType                                  --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="ActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a button offering several actions.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the button face, if there are no 
                        default actions.  If there is a default 
                        action, that action name is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Insert" 
                type="InsertActionType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An action used to insert text.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Copy" 
                type="CopyActionType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        An action used to copy text to the clipboard.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:sequence minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:choice&gt;
                    &lt;xsd:element name="Data" type="xsd:string"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                The data to be inserted or copied by 
                                the Insert or Copy actions.  
                                Multiple Data islands will be 
                                copied/inserted as multiple 
                                paragraphs.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                    &lt;xsd:element name="NewQuery" 
                        type="NewQueryActionType"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                An action that launches a new query.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                    &lt;xsd:element name="Hyperlink" 
                        type="HyperlinkActionType"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                An action that launches a hyperlink.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                    &lt;xsd:element name="Custom" type="CustomType"&gt;
                        &lt;xsd:annotation&gt;
                            &lt;xsd:documentation&gt;
                                A set of custom actions on the 
                                content, provided by a smart tag 
                                DLL on the client machine.  Note 
                                that, due to limitations in the 
                                implementation, only one Custom 
                                element is allowed when the 
                                defaultAllowed attribute is set to 
                                'false'.  The smart tag that 
                                interacts with a Custom element can 
                                return any number of actions.
                            &lt;/xsd:documentation&gt;
                        &lt;/xsd:annotation&gt;
                    &lt;/xsd:element&gt;
                &lt;/xsd:choice&gt;
            &lt;/xsd:sequence&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="defaultAllowed" 
            type="xsd:boolean" use="optional" default="true"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'false' no default action is allowed 
                    and the button displays as a menu button.  
                    Otherwise it is a split button with a default 
                    action and a menu arrow.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: InsertActionType                            --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="InsertActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines an action used to insert text.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the menu item.  If not 
                        specified, 'Insert' or the appropriate
                         translated term is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="default" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the the action will be the 
                    default action for the action control.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CopyActionType                              --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="CopyActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines an action used to copy text to the clipboard.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the menu item.  If not 
                        specified, 'Copy' or the appropriate 
                        translated term is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="default" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the the action will be the 
                    default action for the action control.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: NewQueryActionType                          --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="NewQueryActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a control to launch a new query within 
                an action menu.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the menu item.  If not 
                        specified, 'Look Up' or the appropriate 
                        translated term is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="query" type="xsd:string" use="required"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The query string.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="default" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the new query action is the 
                    default action for the action control.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="noIcon" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the new query icon is 
                    suppressed.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="category" 
            type="t:CategoryType" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Category or group of services to be searched.  
                    If not specified, the currently selected set 
                    of services is searched.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: HyperlinkActionType                         --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="HyperlinkActionType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a hyperlink control within an action menu.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:all&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the menu item.  If not 
                        specified, 'Open' or the appropriate 
                        translated term is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:all&gt;
        &lt;xsd:attribute name="url" type="xsd:anyURI" use="required"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The URL to be launched.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="default" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the new query action is 
                    the default action for the action control.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="noIcon" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' then the hyperlink icon is 
                    suppressed.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="forPay" 
            type="xsd:boolean" use="optional" default="false"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    If set to 'true' it indicates that the link 
                    takes the user to paid content through a 
                    special currency icon.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CustomType                                  --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="CustomType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a set of custom actions on the content, 
                provided by a smart tag DLL on the client machine.  
                The smart tag that interacts with the Custom element 
                can return any number of actions.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:any namespace="##other" minOccurs="0" 
                maxOccurs="unbounded" processContents="skip"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Any element in another namespace.  XML 
                        island used to trigger a smart tag action.  
                        The XML, along with an object model pointer 
                        to the application and other parameters, is 
                        passed to the smart tag.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:any&gt;
        &lt;/xsd:sequence&gt;
        &lt;xsd:attribute name="displayName" 
            type="t:String255" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    Display name for the set of actions.  Used only 
                    when multiple custom action sets are specified, 
                    requiring a cascading menu.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
        &lt;xsd:attribute name="url" type="xsd:anyURI" use="optional"&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The URL where smart tags for this data type can 
                    be downloaded.  If specified a "Check for New 
                    Actions" menu item appears that can be used to 
                    launch the URL.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
        &lt;/xsd:attribute&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: InsertType                                  --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="InsertType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a button used to insert text.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:element name="Text" 
                type="TextContentType" minOccurs="0"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The text for the button.  If not specified, 
                        'Insert' or the appropriate translated term 
                        is used.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
            &lt;xsd:element name="Data" type="xsd:string" 
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The data to be inserted by the Insert action.  
                        Multiple Data islands will be inserted as 
                        multiple paragraphs.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:sequence&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CopyType                                    --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="CopyType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a button used to copy text to the clipboard.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:sequence&gt;
            &lt;xsd:annotation&gt;
                &lt;xsd:documentation&gt;
                    The text for the button.  If not specified, 
                    'Copy' or the appropriate translated term 
                    is used.
                &lt;/xsd:documentation&gt;
            &lt;/xsd:annotation&gt;
            &lt;xsd:element name="Data" type="xsd:string" 
                minOccurs="0" maxOccurs="unbounded"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        The data to be copied by the Copy actions.  
                        Multiple Data islands will be copied as 
                        multiple paragraphs.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:element&gt;
        &lt;/xsd:sequence&gt;
    &lt;/xsd:complexType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: TextContentType                             --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:complexType name="TextContentType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a text label for a control.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:simpleContent&gt;
            &lt;xsd:extension base="xsd:string"&gt;
                &lt;xsd:attribute name="rtl" 
                    type="xsd:boolean" use="optional"&gt;
                    &lt;xsd:annotation&gt;
                        &lt;xsd:documentation&gt;
                            If set to 'true' then the text is 
                            right-to-left.  If set to 'false' 
                            then the text is left-to-right.
                        &lt;/xsd:documentation&gt;
                    &lt;/xsd:annotation&gt;
                &lt;/xsd:attribute&gt;
            &lt;/xsd:extension&gt;
        &lt;/xsd:simpleContent&gt;
    &lt;/xsd:complexType&gt;
&lt;/xsd:schema&gt;
</code></pre><center><a href="XMLSchemaCopyright_HV01147162.htm">&copy;2003-2004 Microsoft Corporation. All rights reserved.</a>  

Permission to copy, display and distribute this document is available at: <a 

href="http://r.office.microsoft.com/r/rlidAWSContentRedir?AssetID=XT010988631033&amp;CTT=11&amp;Origin=HV011232471033" 

target="_new">http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp</a></center></body></html>