File: rsxsdTypes.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 (491 lines) | stat: -rw-r--r-- 24,412 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
<html dir="ltr"><head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META HTTP-EQUIV="assetid" CONTENT="HV01084519"><META NAME="lcid" CONTENT="1033"><title>Microsoft.Search.Types 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.Types Schema</h1><p>This topic contains the annotated text of the Microsoft.Search.Types.xsd schema file. For additional information about this schema, see <a href="rsxsdTypesDocs.htm" id="HV01087687" lcid=" ">Microsoft.Search.Types Schema Documentation</a>.</p><pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt;
&lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
&lt;!-- Schema: Types.xsd                                           --&gt;
&lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    targetNamespace="urn:Microsoft.Search.Types" 
    xmlns="urn:Microsoft.Search.Types" 
    elementFormDefault="qualified"&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;
            This is a list of simple types used by multiple schemas 
            in urn:Microsoft.Search.
        &lt;/xsd:documentation&gt;
    &lt;/xsd:annotation&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!--  Type: String255                                  --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="String255"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines string of up to 255 characters.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:minLength value="0" /&gt;
            &lt;xsd:maxLength value="255" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!--  Type: String2048                                 --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="String2048"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a string of up to 2048 characters.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:minLength value="0" /&gt;
            &lt;xsd:maxLength value="2048" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: GUIDType                                    --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="GUIDType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a GUID, with or without the 
                enclosing curly braces.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:pattern value=
                "\{[A-Fa-f0-9]{8}-([A-Fa-f0-9]
                    {4}-){3}[A-Fa-f0-9]{12}\}" /&gt;
            &lt;xsd:pattern value=
                "[A-Fa-f0-9]{8}-([A-Fa-f0-9]
                    {4}-){3}[A-Fa-f0-9]{12}" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: ISO3166Type                                 --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="ISO3166Type"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines a a country or region in ISO 3166 format.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:minLength value="2" /&gt;
            &lt;xsd:maxLength value="8" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: IDType                                      --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="IDType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines the ID for a control.  Since IDs get turned 
                into XML elements, the ids must be valid XML 
                element names.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:NCName"&gt;
            &lt;xsd:minLength value="1" /&gt;
            &lt;xsd:maxLength value="128" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: StartAtType                                 --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="StartAtType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines the index of the initial result based on '1' 
                as the lowest result index.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:unsignedInt"&gt;
            &lt;xsd:minInclusive value="1" /&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;!-- Type: CategoryType                                --&gt;
    &lt;!-- - - - - - - - - - - - - - - - - - - - - - - - - - --&gt;
    &lt;xsd:simpleType name="CategoryType"&gt;
        &lt;xsd:annotation&gt;
            &lt;xsd:documentation&gt;
                Defines the category under which the service shows 
                in the user interface. Only high level categories 
                display in the user interface, though.
            &lt;/xsd:documentation&gt;
        &lt;/xsd:annotation&gt;
        &lt;xsd:restriction base="xsd:string"&gt;
            &lt;xsd:enumeration value="REFERENCE_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference General category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_DICTIONARY"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Dictionaries category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_THESAURUS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Thesauri category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_TRANSLATION"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Translation category.  Services in 
                        this category are handled in a special way 
                        by the Office client
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_QUOTATIONS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Quotations category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_ALMANACS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Alamanacs category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_ENCYCLOPEDIA"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Encyclopedias category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_SCIENCE"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Science category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_DIRECTORIES"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Directories category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="REFERENCE_WEATHER"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Reference Weather category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="RESEARCH_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Research General category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="RESEARCH_NEWS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Research News category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="RESEARCH_ENCYCLOPEDIA"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Research Encyclopedias category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="RESEARCH_WEBSEARCH"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Research Web Search category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        General Business Finance Category category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_FINANCE"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Finances category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_BUSINESS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Business category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_COMPANIES"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Companies category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_INDUSTRIES"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Industries category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_JOBS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Jobs category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_PERSONALFINANCE"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Personal Finance category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_PROFESSIONS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Professions category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESS_SMALLBUSINESS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Small Business category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science General category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_BIOLOGY"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Biology category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_CHEMISTRY"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Chemistry category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_EARTH"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Earth Sciences category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_MATH"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Math category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_PHYSICS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Physics category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_SOCIALSCIENCES"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Social Sciences category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_TECHNOLOGY"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Technology category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SCIENCE_ENGINEERING"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Science Engineering category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="LAW_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Law category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="MEDICAL_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Medicine category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment General category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_ARTS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Arts category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_SHOPPING"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Shopping category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_SPORTS"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Sports category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_MUSIC"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Music category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_GAMES"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Games category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERTAINMENT_MOVIESTV"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Entertainment Movies and TV category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="INTRANET_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Intranet Services category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="CRM_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Customer Relationship Management Services 
                        category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="SUPPLYMANAGEMENT_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Supply Management Services category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="BUSINESSINTELLIGENCE_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Business Intelligence Services category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ECOMMERCE_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Ecommerce Services category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="ENTERPRISERESOURCES_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Enterprise Resource Management Services 
                        category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="FILESEARCH_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        File Search category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
            &lt;xsd:enumeration value="OTHER_GENERAL"&gt;
                &lt;xsd:annotation&gt;
                    &lt;xsd:documentation&gt;
                        Other category.
                    &lt;/xsd:documentation&gt;
                &lt;/xsd:annotation&gt;
            &lt;/xsd:enumeration&gt;
        &lt;/xsd:restriction&gt;
    &lt;/xsd:simpleType&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>