summaryrefslogtreecommitdiff
path: root/test/schemas/any7_2.xsd
blob: cabfd982e7c3f453e06d03cad73b6ae202729d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
	targetNamespace="urn:test:foo"
	elementFormDefault="qualified">
	<xs:element name="foo">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="bar"/>
				<xs:any namespace="##other" processContents="lax" maxOccurs="2"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>