any2_0.xsd 625 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0"?>
  2. <!-- Tests xsd:any with a set of namespaces, icluding
  3. "##local" and "##targetNamespace". -->
  4. <xsd:schema
  5. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  6. targetNamespace="http://FOO"
  7. 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>
  13. <xsd:element name="foo">
  14. <xsd:complexType>
  15. <xsd:sequence>
  16. <xsd:any
  17. namespace="##targetNamespace http://BAR ##local"
  18. processContents="lax"
  19. maxOccurs="3"/>
  20. </xsd:sequence>
  21. </xsd:complexType>
  22. </xsd:element>
  23. </xsd:schema>