1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
2 | <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:maml="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:doc="http://ddue.schemas.microsoft.com/authoring/internal" targetNamespace="http://ddue.schemas.microsoft.com/authoring/2003/5" blockDefault="#all" elementFormDefault="qualified" attributeFormDefault="unqualified" xml:lang="en">
|
---|
3 | <!-- Schema documentation -->
|
---|
4 | <annotation>
|
---|
5 | <documentation>
|
---|
6 | This schema describes MAML, the Microsoft Assistance Markup Language.
|
---|
7 | MAML is intended for software documentation. In particular, it is
|
---|
8 | intended to accomodate the needs of Microsoft documentation.
|
---|
9 | </documentation>
|
---|
10 | <documentation>
|
---|
11 | The schema is broken into three main areas: end user, developer and
|
---|
12 | IT Pro. These areas adequaltely categorize Microsoft
|
---|
13 | documentation.
|
---|
14 | </documentation>
|
---|
15 | <documentation>
|
---|
16 | The namespace uri for this version of Maml is: http://ddue.schemas.microsoft.com/authoring/2003/5.
|
---|
17 | Each backwards-incompatible revision to Maml will require that the date fields be appropriately
|
---|
18 | incremented in uri of the updated version of the Maml schema.
|
---|
19 | </documentation>
|
---|
20 | </annotation>
|
---|
21 | <include schemaLocation="developerStructure.xsd" />
|
---|
22 | <include schemaLocation="developerReference.xsd" />
|
---|
23 | <include schemaLocation="hierarchy.xsd" />
|
---|
24 | <include schemaLocation="glossary.xsd" />
|
---|
25 | <!--<include schemaLocation="conditionset.xsd" />-->
|
---|
26 |
|
---|
27 | <!-- ************ Reference Content Document Type ************ -->
|
---|
28 | <complexType name="codeEntityDocumentType" mixed="false">
|
---|
29 | <sequence>
|
---|
30 | <element ref="maml:assembly" />
|
---|
31 | <element ref="maml:codeEntities" />
|
---|
32 | </sequence>
|
---|
33 | </complexType>
|
---|
34 | <element name="codeEntityDocument" type="maml:codeEntityDocumentType">
|
---|
35 | <annotation>
|
---|
36 | <documentation>
|
---|
37 | This is the root element of a reference document.
|
---|
38 | </documentation>
|
---|
39 | <appinfo>
|
---|
40 | <doc:localizable>n/a</doc:localizable>
|
---|
41 | <doc:type>section</doc:type>
|
---|
42 | </appinfo>
|
---|
43 | </annotation>
|
---|
44 | </element>
|
---|
45 |
|
---|
46 | <!-- ************ How To Content Document Type ************ -->
|
---|
47 | <complexType name="developerHowToDocumentType" mixed="false">
|
---|
48 | <sequence>
|
---|
49 | <!-- Always a title - but titles are stored outside the file -->
|
---|
50 | <!-- Optional Search Results Summary -->
|
---|
51 | <element ref="maml:summary" minOccurs="0" />
|
---|
52 | <!-- Always an introduction -->
|
---|
53 | <element ref="maml:introduction" />
|
---|
54 | <!-- Optional procedures followed by optional code example
|
---|
55 | but must have at least one procedure or code example -->
|
---|
56 | <choice>
|
---|
57 | <sequence>
|
---|
58 | <!-- One or more procedures -->
|
---|
59 | <choice minOccurs="1" maxOccurs="unbounded" >
|
---|
60 | <element ref="maml:procedure"/>
|
---|
61 | <element name="section" type="maml:procedureSectionType"/>
|
---|
62 | </choice>
|
---|
63 | <!-- An optional code example -->
|
---|
64 | <element ref="maml:codeExample" minOccurs="0" maxOccurs="unbounded"/>
|
---|
65 | </sequence>
|
---|
66 | <element ref="maml:codeExample" maxOccurs="unbounded"/>
|
---|
67 | </choice>
|
---|
68 | <element ref="maml:buildInstructions" minOccurs="0"/>
|
---|
69 | <element ref="maml:robustProgramming" minOccurs="0"/>
|
---|
70 | <element ref="maml:security" minOccurs="0"/>
|
---|
71 | <!-- Always a section for related items -->
|
---|
72 | <element ref="maml:relatedTopics" />
|
---|
73 | </sequence>
|
---|
74 | </complexType>
|
---|
75 | <element name="developerHowToDocument" type="maml:developerHowToDocumentType">
|
---|
76 | <annotation>
|
---|
77 | <documentation>
|
---|
78 | This is the root element of a 'how to' document.
|
---|
79 | </documentation>
|
---|
80 | <appinfo>
|
---|
81 | <doc:localizable>n/a</doc:localizable>
|
---|
82 | <doc:type>section</doc:type>
|
---|
83 | </appinfo>
|
---|
84 | </annotation>
|
---|
85 | </element>
|
---|
86 |
|
---|
87 | <!-- ************ Conceptual Document Type ************ -->
|
---|
88 | <complexType name="developerConceptualDocumentType" mixed="false">
|
---|
89 | <sequence>
|
---|
90 | <!-- Always a title - but titles are stored outside the file -->
|
---|
91 | <!-- Optional Search Results Summary -->
|
---|
92 | <element ref="maml:summary" minOccurs="0" />
|
---|
93 | <!-- Always an introduction -->
|
---|
94 | <element ref="maml:introduction" />
|
---|
95 | <!-- One or more sections -->
|
---|
96 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
97 | <!-- Always a section for related items -->
|
---|
98 | <element ref="maml:relatedTopics" />
|
---|
99 | </sequence>
|
---|
100 | </complexType>
|
---|
101 | <element name="developerConceptualDocument" type="maml:developerConceptualDocumentType">
|
---|
102 | <annotation>
|
---|
103 | <documentation>
|
---|
104 | This element is the root of a 'conceptual' document.
|
---|
105 | </documentation>
|
---|
106 | <appinfo>
|
---|
107 | <doc:localizable>n/a</doc:localizable>
|
---|
108 | <doc:type>section</doc:type>
|
---|
109 | </appinfo>
|
---|
110 | </annotation>
|
---|
111 | </element>
|
---|
112 |
|
---|
113 | <!-- ************ Walkthrough Document Type ************ -->
|
---|
114 | <complexType name="developerWalkthroughDocumentType" mixed="false">
|
---|
115 | <sequence>
|
---|
116 | <!-- Always a title - but titles are stored outside the file -->
|
---|
117 | <!-- Optional Search Results Summary -->
|
---|
118 | <element ref="maml:summary" minOccurs="0" />
|
---|
119 | <!-- Always an introduction -->
|
---|
120 | <element ref="maml:introduction" />
|
---|
121 | <!-- Optional Prerequisites section -->
|
---|
122 | <element name="prerequisites" type="maml:namedSectionType" minOccurs="0" />
|
---|
123 | <!-- One procedures and or section with procedure
|
---|
124 | but must have at least one procedure or section with procedure -->
|
---|
125 | <choice minOccurs="1" maxOccurs="unbounded" >
|
---|
126 | <element ref="maml:procedure"/>
|
---|
127 | <element ref="maml:section"/>
|
---|
128 | </choice>
|
---|
129 | <!-- Optional Next Steps section -->
|
---|
130 | <element name="nextSteps" type="maml:namedSectionType" minOccurs="0" />
|
---|
131 | <!-- Always a section for related items -->
|
---|
132 | <element ref="maml:relatedTopics" />
|
---|
133 | </sequence>
|
---|
134 | </complexType>
|
---|
135 | <element name="developerWalkthroughDocument" type="maml:developerWalkthroughDocumentType">
|
---|
136 | <annotation>
|
---|
137 | <documentation>
|
---|
138 | This element is the root of a 'walkthrough' document.
|
---|
139 | </documentation>
|
---|
140 | <appinfo>
|
---|
141 | <doc:localizable>n/a</doc:localizable>
|
---|
142 | <doc:type>section</doc:type>
|
---|
143 | </appinfo>
|
---|
144 | </annotation>
|
---|
145 | </element>
|
---|
146 |
|
---|
147 | <!-- ************ Orientation Document Type ************ -->
|
---|
148 | <complexType name="developerOrientationDocumentType" mixed="false">
|
---|
149 | <sequence>
|
---|
150 | <!-- Always a title - but titles are stored outside the file -->
|
---|
151 | <!-- Optional Search Results Summary -->
|
---|
152 | <element ref="maml:summary" minOccurs="0" />
|
---|
153 | <!-- Always an introduction -->
|
---|
154 | <element ref="maml:introduction" />
|
---|
155 | <!-- Optional "In This Section" section -->
|
---|
156 | <element name="inThisSection" type="maml:namedSectionType" minOccurs="0" />
|
---|
157 | <!-- Optional Reference section -->
|
---|
158 | <element name="reference" type="maml:namedSectionType" minOccurs="0" />
|
---|
159 | <!-- Optional "Related Sections" section -->
|
---|
160 | <element name="relatedSections" type="maml:namedSectionType" minOccurs="0" />
|
---|
161 | <!-- Optional External Resources section -->
|
---|
162 | <element name="externalResources" type="maml:externalResourcesType" minOccurs="0" />
|
---|
163 | <!-- Optional section for related items -->
|
---|
164 | <element ref="maml:relatedTopics" minOccurs="0" />
|
---|
165 | </sequence>
|
---|
166 | </complexType>
|
---|
167 | <element name="developerOrientationDocument" type="maml:developerOrientationDocumentType">
|
---|
168 | <annotation>
|
---|
169 | <documentation>
|
---|
170 | This element is the root of an 'orientation' document.
|
---|
171 | </documentation>
|
---|
172 | <appinfo>
|
---|
173 | <doc:localizable>n/a</doc:localizable>
|
---|
174 | <doc:type>section</doc:type>
|
---|
175 | </appinfo>
|
---|
176 | </annotation>
|
---|
177 | </element>
|
---|
178 |
|
---|
179 | <!-- ************ Sample Document Type ************ -->
|
---|
180 | <complexType name="developerSampleDocumentType" mixed="false">
|
---|
181 | <sequence>
|
---|
182 | <!-- Always a title - but titles are stored outside the file -->
|
---|
183 | <!-- Optional Search Results Summary -->
|
---|
184 | <element ref="maml:summary" minOccurs="0" />
|
---|
185 | <!-- Always an introduction -->
|
---|
186 | <element ref="maml:introduction" />
|
---|
187 | <!-- Zero or more procedures -->
|
---|
188 | <element ref="maml:procedure" minOccurs="0" maxOccurs="unbounded" />
|
---|
189 | <!-- Optional Requirements section -->
|
---|
190 | <element name="requirements" type="maml:namedSectionType" minOccurs="0" />
|
---|
191 | <!-- Optional Demonstrates section -->
|
---|
192 | <element name="demonstrates" type="maml:namedSectionType" minOccurs="0" />
|
---|
193 | <!-- Optional code example -->
|
---|
194 | <element ref="maml:codeExample" minOccurs="0" maxOccurs="unbounded"/>
|
---|
195 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
196 | <!-- Always a section for related items -->
|
---|
197 | <element ref="maml:relatedTopics" />
|
---|
198 | </sequence>
|
---|
199 | </complexType>
|
---|
200 | <element name="developerSampleDocument" type="maml:developerSampleDocumentType">
|
---|
201 | <annotation>
|
---|
202 | <documentation>
|
---|
203 | This element is the root of a 'sample' document.
|
---|
204 | </documentation>
|
---|
205 | <appinfo>
|
---|
206 | <doc:localizable>n/a</doc:localizable>
|
---|
207 | <doc:type>section</doc:type>
|
---|
208 | </appinfo>
|
---|
209 | </annotation>
|
---|
210 | </element>
|
---|
211 |
|
---|
212 | <!-- ************ Troubleshooting Document Type ************ -->
|
---|
213 | <complexType name="developerTroubleshootingDocumentType" mixed="false">
|
---|
214 | <sequence>
|
---|
215 | <!-- Always a title - but titles are stored outside the file -->
|
---|
216 | <!-- Optional Search Results Summary -->
|
---|
217 | <element ref="maml:summary" minOccurs="0" />
|
---|
218 | <!-- Always an introduction -->
|
---|
219 | <element ref="maml:introduction" />
|
---|
220 | <!-- Zero or more sections -->
|
---|
221 | <!-- Note: sections can contain procedures -->
|
---|
222 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
223 | <!-- Always a section for related items -->
|
---|
224 | <element ref="maml:relatedTopics" />
|
---|
225 | </sequence>
|
---|
226 | </complexType>
|
---|
227 | <element name="developerTroubleshootingDocument" type="maml:developerTroubleshootingDocumentType">
|
---|
228 | <annotation>
|
---|
229 | <documentation>
|
---|
230 | This element is the root of a 'troubleshooting' document.
|
---|
231 | </documentation>
|
---|
232 | <appinfo>
|
---|
233 | <doc:localizable>n/a</doc:localizable>
|
---|
234 | <doc:type>section</doc:type>
|
---|
235 | </appinfo>
|
---|
236 | </annotation>
|
---|
237 | </element>
|
---|
238 |
|
---|
239 | <!-- ************ Reference Without Syntax Document Type ************ -->
|
---|
240 | <complexType name="developerReferenceWithoutSyntaxDocumentType" mixed="false">
|
---|
241 | <sequence>
|
---|
242 | <!-- Always a title - but titles are stored outside the file -->
|
---|
243 | <!-- Optional Search Results Summary -->
|
---|
244 | <element ref="maml:summary" minOccurs="0" />
|
---|
245 | <!-- Always an introduction -->
|
---|
246 | <element ref="maml:introduction" />
|
---|
247 | <choice maxOccurs="unbounded" >
|
---|
248 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
249 | <!-- Optional Remarks section -->
|
---|
250 | <element name="languageReferenceRemarks" type="maml:namedSectionType" minOccurs="0" />
|
---|
251 | <!-- Optional Code Example section -->
|
---|
252 | <element ref="maml:codeExample" minOccurs="0" maxOccurs="unbounded"/>
|
---|
253 | </choice>
|
---|
254 | <!-- Always a section for related items -->
|
---|
255 | <element ref="maml:relatedTopics" />
|
---|
256 | </sequence>
|
---|
257 | </complexType>
|
---|
258 | <element name="developerReferenceWithoutSyntaxDocument" type="maml:developerReferenceWithoutSyntaxDocumentType">
|
---|
259 | <annotation>
|
---|
260 | <documentation>
|
---|
261 | This element is the root of a 'general reference' document.
|
---|
262 | </documentation>
|
---|
263 | <appinfo>
|
---|
264 | <doc:localizable>n/a</doc:localizable>
|
---|
265 | <doc:type>section</doc:type>
|
---|
266 | </appinfo>
|
---|
267 | </annotation>
|
---|
268 | </element>
|
---|
269 |
|
---|
270 | <!-- ************ Reference With Syntax Document Type ************ -->
|
---|
271 | <complexType name="developerReferenceWithSyntaxDocumentType" mixed="false">
|
---|
272 | <sequence>
|
---|
273 | <!-- Always a title - but titles are stored outside the file -->
|
---|
274 | <!-- Optional Search Results Summary -->
|
---|
275 | <element ref="maml:summary" minOccurs="0" />
|
---|
276 | <!-- Always an introduction -->
|
---|
277 | <element ref="maml:introduction" />
|
---|
278 | <!-- Always a Syntax section -->
|
---|
279 | <element ref="maml:syntaxSection" maxOccurs="unbounded" />
|
---|
280 | <choice maxOccurs="unbounded" >
|
---|
281 | <!-- Optional Parameters section -->
|
---|
282 | <element name="parameters" type="maml:namedSectionType" minOccurs="0" />
|
---|
283 | <!-- Optional Return Value/Property Value section -->
|
---|
284 | <element name="returnValue" type="maml:namedSectionType" minOccurs="0" />
|
---|
285 | <!-- Optional Exceptions section -->
|
---|
286 | <element name="exceptions" type="maml:namedSectionType" minOccurs="0" />
|
---|
287 | <!-- Optional Remarks section -->
|
---|
288 | <element name="languageReferenceRemarks" type="maml:namedSectionType" minOccurs="0" />
|
---|
289 | <!-- Optional Code Example section -->
|
---|
290 | <element ref="maml:codeExample" minOccurs="0" />
|
---|
291 | <!-- Optional .NET Framework Equivalent section -->
|
---|
292 | <element name="dotNetFrameworkEquivalent" type="maml:namedSectionType" minOccurs="0" />
|
---|
293 | <!-- Optional Requirements section -->
|
---|
294 | <element name="requirements" type="maml:namedSectionType" minOccurs="0" />
|
---|
295 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
296 | </choice>
|
---|
297 | <!-- Always a section for related items -->
|
---|
298 | <element ref="maml:relatedTopics" />
|
---|
299 | </sequence>
|
---|
300 | </complexType>
|
---|
301 | <element name="developerReferenceWithSyntaxDocument" type="maml:developerReferenceWithSyntaxDocumentType">
|
---|
302 | <annotation>
|
---|
303 | <documentation>
|
---|
304 | This element is the root of a document that contains reference and syntax.
|
---|
305 | </documentation>
|
---|
306 | <appinfo>
|
---|
307 | <doc:localizable>n/a</doc:localizable>
|
---|
308 | <doc:type>section</doc:type>
|
---|
309 | </appinfo>
|
---|
310 | </annotation>
|
---|
311 | </element>
|
---|
312 |
|
---|
313 | <!-- ************ Error Message Document Type ************ -->
|
---|
314 | <complexType name="developerErrorMessageDocumentType" mixed="false">
|
---|
315 | <sequence>
|
---|
316 | <!-- Always a title - but titles are stored outside the file -->
|
---|
317 | <!-- Optional Non Localizable Error Title -->
|
---|
318 | <element ref="maml:nonLocErrorTitle" minOccurs="0" />
|
---|
319 | <!-- Optional Localizable Secondary Error Title -->
|
---|
320 | <element ref="maml:secondaryErrorTitle" minOccurs="0" />
|
---|
321 | <!-- Optional Search Results Summary -->
|
---|
322 | <element ref="maml:summary" minOccurs="0" />
|
---|
323 | <!-- Always an introduction -->
|
---|
324 | <element ref="maml:introduction" />
|
---|
325 | <!-- Zero or more procedures -->
|
---|
326 | <element ref="maml:procedure" minOccurs="0" maxOccurs="unbounded" />
|
---|
327 | <!-- Optional code example -->
|
---|
328 | <element ref="maml:codeExample" minOccurs="0" maxOccurs="unbounded"/>
|
---|
329 | <!-- Always a section for related items -->
|
---|
330 | <element ref="maml:relatedTopics" minOccurs="0" />
|
---|
331 | </sequence>
|
---|
332 | </complexType>
|
---|
333 | <element name="developerErrorMessageDocument" type="maml:developerErrorMessageDocumentType">
|
---|
334 | <annotation>
|
---|
335 | <documentation>
|
---|
336 | This element is the root of an 'error message' document.
|
---|
337 | </documentation>
|
---|
338 | <appinfo>
|
---|
339 | <doc:localizable>n/a</doc:localizable>
|
---|
340 | <doc:type>section</doc:type>
|
---|
341 | </appinfo>
|
---|
342 | </annotation>
|
---|
343 | </element>
|
---|
344 |
|
---|
345 | <!-- ************ UI Reference Document Type ************ -->
|
---|
346 | <complexType name="developerUIReferenceDocumentType" mixed="false">
|
---|
347 | <sequence>
|
---|
348 | <!-- Always a title - but titles are stored outside the file -->
|
---|
349 | <!-- Optional Search Results Summary -->
|
---|
350 | <element ref="maml:summary" minOccurs="0" />
|
---|
351 | <!-- Always an introduction -->
|
---|
352 | <element ref="maml:introduction" />
|
---|
353 | <!-- Always a Task List section -->
|
---|
354 | <element name="taskList" type="maml:namedSectionType" minOccurs="0" />
|
---|
355 | <choice maxOccurs="unbounded" >
|
---|
356 | <!-- Optional sections -->
|
---|
357 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded" />
|
---|
358 | <!-- Always a UI Element List section -->
|
---|
359 | <element name="uiElementList" type="maml:namedSectionType" />
|
---|
360 | </choice>
|
---|
361 | <!-- Always a section for related items -->
|
---|
362 | <element ref="maml:relatedTopics" />
|
---|
363 | </sequence>
|
---|
364 | </complexType>
|
---|
365 | <element name="developerUIReferenceDocument" type="maml:developerUIReferenceDocumentType">
|
---|
366 | <annotation>
|
---|
367 | <documentation>
|
---|
368 | This element is the root of an 'UI reference' document.
|
---|
369 | </documentation>
|
---|
370 | <appinfo>
|
---|
371 | <doc:localizable>n/a</doc:localizable>
|
---|
372 | <doc:type>section</doc:type>
|
---|
373 | </appinfo>
|
---|
374 | </annotation>
|
---|
375 | </element>
|
---|
376 |
|
---|
377 | <!-- ************ SDK Technology Overview Orientation Document Type ************ -->
|
---|
378 | <complexType name="developerSDKTechnologyOverviewOrientationDocumentType" mixed="false">
|
---|
379 | <sequence>
|
---|
380 | <!-- Always a title - but titles are stored outside the file -->
|
---|
381 | <!-- Optional Search Results Summary -->
|
---|
382 | <element ref="maml:summary" minOccurs="0" />
|
---|
383 | <!-- Always an introduction -->
|
---|
384 | <element ref="maml:introduction" />
|
---|
385 | <!-- One "In This Section" section -->
|
---|
386 | <element name="inThisSection" type="maml:namedSectionType" />
|
---|
387 | <!-- Optional Reference section -->
|
---|
388 | <element name="reference" type="maml:namedSectionType" minOccurs="0" />
|
---|
389 | <!-- Optional "Related Sections" section -->
|
---|
390 | <element name="relatedSections" type="maml:namedSectionType" minOccurs="0" />
|
---|
391 | <!-- Optional External Resources section -->
|
---|
392 | <element name="externalResources" type="maml:externalResourcesType" minOccurs="0" />
|
---|
393 | </sequence>
|
---|
394 | </complexType>
|
---|
395 | <element name="developerSDKTechnologyOverviewOrientationDocument" type="maml:developerSDKTechnologyOverviewOrientationDocumentType">
|
---|
396 | <annotation>
|
---|
397 | <documentation>
|
---|
398 | This element is the root of an 'orientation' document.
|
---|
399 | </documentation>
|
---|
400 | <appinfo>
|
---|
401 | <doc:localizable>n/a</doc:localizable>
|
---|
402 | <doc:type>section</doc:type>
|
---|
403 | </appinfo>
|
---|
404 | </annotation>
|
---|
405 | </element>
|
---|
406 | <!-- ************ SDK Technology Overview Technology Summary Document Type ************ -->
|
---|
407 | <complexType name="developerSDKTechnologyOverviewTechnologySummaryDocumentType" mixed="false">
|
---|
408 | <sequence>
|
---|
409 | <!-- Always a title - but titles are stored outside the file -->
|
---|
410 | <!-- Optional Search Results Summary -->
|
---|
411 | <element ref="maml:summary" minOccurs="0" />
|
---|
412 | <!-- Always an introduction -->
|
---|
413 | <element ref="maml:introduction" />
|
---|
414 | <!-- Always a Keywords section -->
|
---|
415 | <element name="keywords" type="maml:namedSectionType" />
|
---|
416 | <!-- Always a Namespaces section -->
|
---|
417 | <element name="namespaces" type="maml:namedSectionType" />
|
---|
418 | <!-- Optional Related Technologies section -->
|
---|
419 | <element name="relatedTechnologies" type="maml:namedSectionType" minOccurs="0" />
|
---|
420 | <!-- Always a Background section -->
|
---|
421 | <element name="background" type="maml:namedSectionType" />
|
---|
422 | <!-- Always an Implementing (Technology Name) Classes section -->
|
---|
423 | <element name="implementingTechnologyNameClasses" type="maml:sectionType" />
|
---|
424 | <!-- Always a (Technology Name) Classes at a Glance section -->
|
---|
425 | <element name="technologyNameClassesAtAGlance" type="maml:sectionType" />
|
---|
426 | <!-- Optional What's New section -->
|
---|
427 | <element name="whatsNew" type="maml:namedSectionType" minOccurs="0" />
|
---|
428 | <!-- Always a section for related items -->
|
---|
429 | <element ref="maml:relatedTopics" />
|
---|
430 | </sequence>
|
---|
431 | </complexType>
|
---|
432 | <element name="developerSDKTechnologyOverviewTechnologySummaryDocument" type="maml:developerSDKTechnologyOverviewTechnologySummaryDocumentType">
|
---|
433 | <annotation>
|
---|
434 | <documentation>
|
---|
435 | This element is the root of a 'technology summary' document.
|
---|
436 | </documentation>
|
---|
437 | <appinfo>
|
---|
438 | <doc:localizable>n/a</doc:localizable>
|
---|
439 | <doc:type>section</doc:type>
|
---|
440 | </appinfo>
|
---|
441 | </annotation>
|
---|
442 | </element>
|
---|
443 |
|
---|
444 | <!-- ************ SDK Technology Overview Architecture Document Type ************ -->
|
---|
445 | <element name="developerSDKTechnologyOverviewArchitectureDocument" type="maml:developerConceptualDocumentType">
|
---|
446 | <annotation>
|
---|
447 | <documentation>
|
---|
448 | This element is the root of an 'architecture' document.
|
---|
449 | </documentation>
|
---|
450 | <appinfo>
|
---|
451 | <doc:localizable>n/a</doc:localizable>
|
---|
452 | <doc:type>section</doc:type>
|
---|
453 | </appinfo>
|
---|
454 | </annotation>
|
---|
455 | </element>
|
---|
456 |
|
---|
457 | <!-- ************ SDK Technology Overview Scenarios Document Type ************ -->
|
---|
458 | <element name="developerSDKTechnologyOverviewScenariosDocument" type="maml:developerConceptualDocumentType">
|
---|
459 | <annotation>
|
---|
460 | <documentation>
|
---|
461 | This element is the root of an 'scenarios' document.
|
---|
462 | </documentation>
|
---|
463 | <appinfo>
|
---|
464 | <doc:localizable>n/a</doc:localizable>
|
---|
465 | <doc:type>section</doc:type>
|
---|
466 | </appinfo>
|
---|
467 | </annotation>
|
---|
468 | </element>
|
---|
469 |
|
---|
470 | <!-- ************ SDK Technology Overview Code Directory Document Type ************ -->
|
---|
471 | <complexType name="developerSDKTechnologyOverviewCodeDirectoryDocumentType" mixed="false">
|
---|
472 | <sequence>
|
---|
473 | <!-- Always a title - but titles are stored outside the file -->
|
---|
474 | <!-- Optional Search Results Summary -->
|
---|
475 | <element ref="maml:summary" minOccurs="0" />
|
---|
476 | <!-- Always an introduction -->
|
---|
477 | <element ref="maml:introduction" />
|
---|
478 | <!-- Always a Code List section -->
|
---|
479 | <element name="codeList" type="maml:namedSectionType" />
|
---|
480 | <!-- Always a section for related items -->
|
---|
481 | <element ref="maml:relatedTopics" />
|
---|
482 | </sequence>
|
---|
483 | </complexType>
|
---|
484 | <element name="developerSDKTechnologyOverviewCodeDirectoryDocument" type="maml:developerSDKTechnologyOverviewCodeDirectoryDocumentType">
|
---|
485 | <annotation>
|
---|
486 | <documentation>
|
---|
487 | This element is the root of an 'UI reference' document.
|
---|
488 | </documentation>
|
---|
489 | <appinfo>
|
---|
490 | <doc:localizable>n/a</doc:localizable>
|
---|
491 | <doc:type>section</doc:type>
|
---|
492 | </appinfo>
|
---|
493 | </annotation>
|
---|
494 | </element>
|
---|
495 |
|
---|
496 | <!-- ************ Whitepaper Document Type ************ -->
|
---|
497 | <complexType name="developerWhitePaperDocumentType" mixed="false">
|
---|
498 | <sequence>
|
---|
499 | <element ref="maml:summary" minOccurs="0"/>
|
---|
500 | <element name="byline" type="maml:singleParagraphSimpleContentType"/>
|
---|
501 | <element name="date" type="maml:singleParagraphSimpleContentType"/>
|
---|
502 | <element name="summarySection" type="maml:namedSectionType"/>
|
---|
503 | <element name="downloadCenterLink" type="maml:namedSectionType" minOccurs="0"/>
|
---|
504 | <element name="appliesTo" type="maml:namedSectionType" minOccurs="0"/>
|
---|
505 | <element name="contents" type="maml:namedSectionType" minOccurs="0"/>
|
---|
506 | <element ref="maml:introduction"/>
|
---|
507 | <element ref="maml:section" minOccurs="0" maxOccurs="unbounded"/>
|
---|
508 | <element ref="maml:conclusion"/>
|
---|
509 | <element ref="maml:relatedTopics" minOccurs="0"/>
|
---|
510 | <element name="additionalInformation" type="maml:namedSectionType" minOccurs="0"/>
|
---|
511 | <element name="authorBio" type="maml:namedSectionType" minOccurs="0"/>
|
---|
512 | <!-- Always a title - but titles are stored outside the file -->
|
---|
513 | <!-- Optional Search Results Summary -->
|
---|
514 | <!-- Optional "Download Center/Sample Manager link" section -->
|
---|
515 | <!-- Optional "Applies To" section -->
|
---|
516 | <!-- Always an introduction -->
|
---|
517 | <!-- Always a body section -->
|
---|
518 | <!-- Optional Code Example section -->
|
---|
519 | <!-- Always a conclusion -->
|
---|
520 | <!-- Optional section for related items -->
|
---|
521 | </sequence>
|
---|
522 | </complexType>
|
---|
523 | <element name="developerWhitePaperDocument" type="maml:developerWhitePaperDocumentType">
|
---|
524 | <annotation>
|
---|
525 | <documentation>
|
---|
526 | This element is the root of a 'sample' document.
|
---|
527 | </documentation>
|
---|
528 | <appinfo>
|
---|
529 | <doc:localizable>n/a</doc:localizable>
|
---|
530 | <doc:type>section</doc:type>
|
---|
531 | </appinfo>
|
---|
532 | </annotation>
|
---|
533 | </element>
|
---|
534 |
|
---|
535 | <!-- ************ Glossary Document Type ************ -->
|
---|
536 | <complexType name="developerGlossaryDocumentType" mixed="false">
|
---|
537 | <sequence>
|
---|
538 | <element ref="maml:glossary" />
|
---|
539 | </sequence>
|
---|
540 | </complexType>
|
---|
541 | <element name="developerGlossaryDocument" type="maml:developerGlossaryDocumentType">
|
---|
542 | <annotation>
|
---|
543 | <documentation>
|
---|
544 | This element is the root of a 'glossary' document.
|
---|
545 | </documentation>
|
---|
546 | <appinfo>
|
---|
547 | <doc:localizable>n/a</doc:localizable>
|
---|
548 | <doc:type>section</doc:type>
|
---|
549 | </appinfo>
|
---|
550 | </annotation>
|
---|
551 | </element>
|
---|
552 |
|
---|
553 | <!-- ************ XML Reference Document Type ************ -->
|
---|
554 | <complexType name="developerXmlReferenceDocumentType" mixed="false">
|
---|
555 | <sequence>
|
---|
556 | <element ref="maml:summary" minOccurs="0"/>
|
---|
557 | <element ref="maml:introduction"/>
|
---|
558 | <element ref="maml:schemaHierarchy" minOccurs="0"/>
|
---|
559 | <element ref="maml:syntaxSection"/>
|
---|
560 | <element name="type" type="maml:singleParagraphSimpleContentType" minOccurs="0"/>
|
---|
561 | <element ref="maml:attributesandElements"/>
|
---|
562 | <element name="textValue" type="maml:namedSectionType" minOccurs="0"/>
|
---|
563 | <element name="remarks" type="maml:namedSectionType" minOccurs="0"/>
|
---|
564 | <element ref="maml:codeExample" minOccurs="0" maxOccurs="unbounded"/>
|
---|
565 | <element ref="maml:elementInformation" minOccurs="0"/>
|
---|
566 | <element ref="maml:relatedTopics"/>
|
---|
567 | <!-- Always a title - but titles are stored outside the file -->
|
---|
568 | <!-- Optional Search Results Summary -->
|
---|
569 | <!-- Always an introduction -->
|
---|
570 | <!-- Always a section for related items -->
|
---|
571 | </sequence>
|
---|
572 | </complexType>
|
---|
573 | <element name="developerXmlReference" type="maml:developerXmlReferenceDocumentType">
|
---|
574 | <annotation>
|
---|
575 | <documentation>
|
---|
576 | This element is the root of a document that contains reference and syntax.
|
---|
577 | </documentation>
|
---|
578 | <appinfo>
|
---|
579 | <doc:localizable>n/a</doc:localizable>
|
---|
580 | <doc:type>section</doc:type>
|
---|
581 | </appinfo>
|
---|
582 | </annotation>
|
---|
583 | </element>
|
---|
584 |
|
---|
585 | </schema>
|
---|