import2_0.imp 599 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="http://FOO"
  4. xmlns:foo="http://FOO"
  5. xmlns:bar="http://BAR"
  6. elementFormDefault="qualified">
  7. <!-- We need to import the namespace for the schema to be valid. -->
  8. <xsd:import namespace="http://BAR"/>
  9. <xsd:element name="foo">
  10. <xsd:complexType>
  11. <xsd:sequence>
  12. <xsd:element name="foo.B" type="bar:fooType"/>
  13. <xsd:element ref="bar:bar"/>
  14. </xsd:sequence>
  15. <xsd:attribute name="foo.attr"/>
  16. </xsd:complexType>
  17. </xsd:element>
  18. </xsd:schema>