-
Notifications
You must be signed in to change notification settings - Fork 7
/
sml-singleCellTable.xsd
96 lines (96 loc) · 3.94 KB
/
sml-singleCellTable.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema targetNamespace="http://schemas.openxmlformats.org/spreadsheetml/2006/main" elementFormDefault="qualified" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="sml-table.xsd" />
<xsd:include schemaLocation="sml-baseTypes.xsd" />
<xsd:element name="singleXmlCells" type="CT_SingleXmlCells">
<xsd:annotation>
<xsd:documentation>Single Cells</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="CT_SingleXmlCells">
<xsd:sequence>
<xsd:element name="singleXmlCell" type="CT_SingleXmlCell" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Table Properties</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CT_SingleXmlCell">
<xsd:sequence>
<xsd:element name="xmlCellPr" type="CT_XmlCellPr" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Cell Properties</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Future Feature Data Storage Area</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:unsignedInt" use="required">
<xsd:annotation>
<xsd:documentation>Table Id</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="r" type="ST_CellRef" use="required">
<xsd:annotation>
<xsd:documentation>Reference</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="connectionId" type="xsd:unsignedInt" use="required">
<xsd:annotation>
<xsd:documentation>Connection ID</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_XmlCellPr">
<xsd:sequence>
<xsd:element name="xmlPr" type="CT_XmlPr" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Column XML Properties</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Future Feature Data Storage Area</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:unsignedInt" use="required">
<xsd:annotation>
<xsd:documentation>Table Field Id</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="uniqueName" type="ST_Xstring" use="optional">
<xsd:annotation>
<xsd:documentation>Unique Table Name</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_XmlPr">
<xsd:sequence>
<xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Future Feature Data Storage Area</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="mapId" type="xsd:unsignedInt" use="required">
<xsd:annotation>
<xsd:documentation>XML Map Id</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="xpath" type="ST_Xstring" use="required">
<xsd:annotation>
<xsd:documentation>XPath</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="xmlDataType" type="ST_XmlDataType" use="required">
<xsd:annotation>
<xsd:documentation>XML Data Type</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:schema>