<xsd:complexType name="CT_GroupItems">
<xsd:choice maxOccurs="unbounded">
<xsd:element name="m" type="CT_Missing">
<xsd:annotation>
<xsd:documentation>No Value</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="n" type="CT_Number">
<xsd:annotation>
<xsd:documentation>Numeric Value</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="b" type="CT_Boolean">
<xsd:annotation>
<xsd:documentation>Boolean</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="e" type="CT_Error">
<xsd:annotation>
<xsd:documentation>Error Value</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="s" type="CT_String">
<xsd:annotation>
<xsd:documentation>Character Value</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="d" type="CT_DateTime">
<xsd:annotation>
<xsd:documentation>Date Time</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
<xsd:attribute name="count" type="xsd:unsignedInt">
<xsd:annotation>
<xsd:documentation>Items Created Count</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|