You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
532 B
22 lines
532 B
<?xml version="1.0"?>
|
|
<!-- Tests xsd:any with "##any". -->
|
|
<xsd:schema
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://FOO"
|
|
xmlns:foo="http://FOO">
|
|
|
|
<xsd:element name="boo">
|
|
<xsd:complexType>
|
|
<xsd:attribute name="booAttr" type="xsd:integer" />
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
|
|
<xsd:element name="foo">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="3"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
|
|
</xsd:schema> |