2.3.1.12 Repeating Table Control

A repeating table control bound to a repeating group, for example named "group2", and containing three text box controls that are not required to contain data, which are bound to XML elements named "field1", "field2", and "field3" with data types set to "string" for which no constraining facets, as specified in [XMLSCHEMA1], have been set, has the following XSD:

     <xsd:element name="group1">
         <xsd:complexType>
              <xsd:sequence>
                 <xsd:element ref="my:group2" minOccurs="0" maxOccurs="unbounded"/>
             </xsd:sequence>
         </xsd:complexType>
     </xsd:element>
         <xsd:element name="group2">
             <xsd:complexType>
                 <xsd:sequence>
                     <xsd:element ref="my:field1" minOccurs="0"/>
                     <xsd:element ref="my:field2" minOccurs="0"/>
                     <xsd:element ref="my:field3" minOccurs="0"/>
                 </xsd:sequence>
         </xsd:complexType>
     </xsd:element>
     <xsd:element name="field1" type="xsd:string"/>
     <xsd:element name="field2" type="xsd:string"/>
     <xsd:element name="field3" type="xsd:string"/>