1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
2 | <schema xmlns="http://www.w3.org/2001/XMLSchema"
|
---|
3 | xmlns:maml="http://ddue.schemas.microsoft.com/authoring/2003/5"
|
---|
4 | xmlns:doc="http://ddue.schemas.microsoft.com/authoring/internal"
|
---|
5 | targetNamespace="http://ddue.schemas.microsoft.com/authoring/2003/5"
|
---|
6 | elementFormDefault="qualified"
|
---|
7 | attributeFormDefault="unqualified"
|
---|
8 | >
|
---|
9 |
|
---|
10 | <!-- Schema documentation -->
|
---|
11 | <annotation>
|
---|
12 | <documentation>
|
---|
13 | This schema definition defines common hierarchy types for the CS Schema.
|
---|
14 | This schema is part of the base layer.
|
---|
15 | </documentation>
|
---|
16 | </annotation>
|
---|
17 |
|
---|
18 | <!-- include and import declarations -->
|
---|
19 | <include schemaLocation="block.xsd"/>
|
---|
20 |
|
---|
21 | <!-- element declarations -->
|
---|
22 | <element name="table">
|
---|
23 | <annotation>
|
---|
24 | <documentation>
|
---|
25 | The table element describes a table model that is conformant to the CALS
|
---|
26 | table model.
|
---|
27 | </documentation>
|
---|
28 | <appinfo>
|
---|
29 | <doc:localizable>n/a</doc:localizable>
|
---|
30 | <doc:type>structure</doc:type>
|
---|
31 | </appinfo>
|
---|
32 | </annotation>
|
---|
33 | <complexType>
|
---|
34 | <sequence>
|
---|
35 | <element ref="maml:title" minOccurs="0"/>
|
---|
36 | <element ref="maml:tableHeader" minOccurs="0"/>
|
---|
37 | <element ref="maml:row" maxOccurs="unbounded"/>
|
---|
38 | </sequence>
|
---|
39 | </complexType>
|
---|
40 | </element>
|
---|
41 |
|
---|
42 | <element name="tableHeader" type="maml:tableHeaderType">
|
---|
43 | <annotation>
|
---|
44 | <documentation>
|
---|
45 | The tableHeader element describes a table header.
|
---|
46 | </documentation>
|
---|
47 | <appinfo>
|
---|
48 | <doc:localizable>n/a</doc:localizable>
|
---|
49 | <doc:type>structure</doc:type>
|
---|
50 | </appinfo>
|
---|
51 | </annotation>
|
---|
52 | </element>
|
---|
53 |
|
---|
54 | <element name="row">
|
---|
55 | <annotation>
|
---|
56 | <documentation>
|
---|
57 | The row element describes a row within a table.
|
---|
58 | </documentation>
|
---|
59 | <appinfo>
|
---|
60 | <doc:localizable>n/a</doc:localizable>
|
---|
61 | <doc:type>structure</doc:type>
|
---|
62 | </appinfo>
|
---|
63 | </annotation>
|
---|
64 | <complexType>
|
---|
65 | <sequence>
|
---|
66 | <element ref="maml:entry" maxOccurs="unbounded"/>
|
---|
67 | </sequence>
|
---|
68 | </complexType>
|
---|
69 | </element>
|
---|
70 |
|
---|
71 | <element name="entry" type="maml:sectionContentType">
|
---|
72 | <annotation>
|
---|
73 | <documentation>
|
---|
74 | The entry element describes an entry within a table.
|
---|
75 | </documentation>
|
---|
76 | <appinfo>
|
---|
77 | <doc:localizable>n/a</doc:localizable>
|
---|
78 | <doc:type>structure</doc:type>
|
---|
79 | </appinfo>
|
---|
80 | </annotation>
|
---|
81 | </element>
|
---|
82 |
|
---|
83 | <!-- complexType declarations -->
|
---|
84 | <complexType name="tableHeaderType">
|
---|
85 | <annotation>
|
---|
86 | <documentation>
|
---|
87 | This type is intended for use as the children of table elements.
|
---|
88 | </documentation>
|
---|
89 | </annotation>
|
---|
90 | <sequence>
|
---|
91 | <element ref="maml:row" minOccurs="1" maxOccurs="1"/>
|
---|
92 | </sequence>
|
---|
93 | </complexType>
|
---|
94 |
|
---|
95 |
|
---|
96 | </schema>
|
---|