elem0_0.xsd 433 B

12345678910111213141516
  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. <xsd:element name="doc">
  9. <xsd:complexType>
  10. <xsd:sequence>
  11. <xsd:element name='a' minOccurs='0' maxOccurs='3'/>
  12. </xsd:sequence>
  13. </xsd:complexType>
  14. </xsd:element>
  15. </xsd:schema>