1<?xml version="1.0"?>
2
3<xsd:schema
4  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5  xmlns="test"
6  targetNamespace="test">
7
8     <xsd:element name="a" type="A"/>
9     <xsd:complexType name="A">
10          <xsd:sequence>
11	       <xsd:element name="b" type="xsd:string" maxOccurs="30000"/>
12	  </xsd:sequence>
13     </xsd:complexType>
14
15</xsd:schema>
16