Home | History | Annotate | Download | only in schemas
      1 <?xml version="1.0"?>
      2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      3   <xsd:annotation>
      4     <xsd:documentation>
      5       Testing min and max occurance attributes on element
      6     </xsd:documentation>
      7   </xsd:annotation>
      8 
      9   <xsd:element name="doc">
     10     <xsd:complexType>
     11       <xsd:sequence>
     12         <xsd:element name='a' minOccurs='0' maxOccurs='3'/>
     13       </xsd:sequence>
     14     </xsd:complexType>
     15   </xsd:element>
     16 </xsd:schema>
     17