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
|
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema targetNamespace="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:simpleType name="ST_Xstring">
<xsd:annotation>
<xsd:documentation>Escaped String</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string" />
</xsd:simpleType>
<xsd:simpleType name="ST_CellRef">
<xsd:annotation>
<xsd:documentation>Cell Reference</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string" />
</xsd:simpleType>
<xsd:simpleType name="ST_Ref">
<xsd:annotation>
<xsd:documentation>Cell References</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string" />
</xsd:simpleType>
<xsd:simpleType name="ST_RefA">
<xsd:annotation>
<xsd:documentation>Single Cell Reference</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string" />
</xsd:simpleType>
<xsd:simpleType name="ST_Sqref">
<xsd:annotation>
<xsd:documentation>Reference Sequence</xsd:documentation>
</xsd:annotation>
<xsd:list itemType="ST_Ref" />
</xsd:simpleType>
<xsd:simpleType name="ST_Formula">
<xsd:annotation>
<xsd:documentation>Formula</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="ST_Xstring" />
</xsd:simpleType>
<xsd:simpleType name="ST_UnsignedIntHex">
<xsd:annotation>
<xsd:documentation>Hex Unsigned Integer</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:hexBinary">
<xsd:length value="4" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ST_UnsignedShortHex">
<xsd:annotation>
<xsd:documentation>Unsigned Short Hex</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:hexBinary">
<xsd:length value="2" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ST_Guid">
<xsd:annotation>
<xsd:documentation>Globally Unique Identifier</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}" />
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="CT_XStringElement">
<xsd:attribute name="v" type="ST_Xstring" use="required">
<xsd:annotation>
<xsd:documentation>Value</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CT_Extension">
<xsd:sequence>
<xsd:any processContents="lax" />
</xsd:sequence>
<xsd:attribute name="uri" type="xsd:token">
<xsd:annotation>
<xsd:documentation>URI</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:group name="EG_ExtensionList">
<xsd:sequence>
<xsd:element name="ext" type="CT_Extension" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Extension</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:group>
<xsd:complexType name="CT_ExtensionList">
<xsd:sequence>
<xsd:group ref="EG_ExtensionList" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
|