libxml2 2.9.1 clean sources
[tomato/tomato-dir865l.git] / release / src / router / libxml2 / test / schemas / any1_0.xsd
blobed0087b71786397eac5f05dcd1369f304e59faa4
1 <?xml version="1.0"?>
2 <!-- Tests xsd:any with "##any". -->
3 <xsd:schema
4 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5 targetNamespace="http://FOO"
6 xmlns:foo="http://FOO">
8 <xsd:element name="boo">
9 <xsd:complexType>
10 <xsd:attribute name="booAttr" type="xsd:integer" />
11 </xsd:complexType>
12 </xsd:element>
14 <xsd:element name="foo">
15 <xsd:complexType>
16 <xsd:sequence>
17 <xsd:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="3"/>
18 </xsd:sequence>
19 </xsd:complexType>
20 </xsd:element>
22 </xsd:schema>