1 <?xml version="1.0"?>
   2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   3             targetNamespace="http://xsdtesting">
   4   <xsd:element name="foo">
   5     <xsd:complexType>
   6       <xsd:choice maxOccurs="10">
   7         <xsd:any namespace="A" processContents="lax"/>
   8         <xsd:any namespace="A"/>
   9       </xsd:choice>
  10     </xsd:complexType>
  11   </xsd:element>
  12   
  13   <xsd:element name="bar"/>
  14 
  15 </xsd:schema>