<xsd:complexType name="FieldType">
<xsd:annotation>
<xsd:documentation>Specifies which cells in the spreadsheet are to be mapped to the data pointed to by the XPath element.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Range" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains a relative address that specifies which column is to be used for each of the elements mapped from the XML document.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="XPath" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains a relative path from the parent element to the child element that is to be mapped to the column specified in the Range element.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="XSDType" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>"Contains the data type of the element or attribute being mapped, using the data types from the W3C Schema specification."</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="ss:Cell" minOccurs="0" />
<xsd:element ref="x:DataValidation" minOccurs="0" />
<xsd:element name="Aggregate" minOccurs="0" default="None">
<xsd:annotation>
<xsd:documentation>Indicates the kind of aggregation to be done in the totals row.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None" />
<xsd:enumeration value="Sum" />
<xsd:enumeration value="Count" />
<xsd:enumeration value="CountNums" />
<xsd:enumeration value="Var" />
<xsd:enumeration value="Average" />
<xsd:enumeration value="stdDev" />
<xsd:enumeration value="Max" />
<xsd:enumeration value="Min" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element ref="x:AutoFilterColumn" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="ID" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Specifies the column heading value.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|