import_second_library.xsd 479 B

12345678910111213141516
  1. <?xml version="1.0"?>
  2. <schema xmlns:tns="urn:second-library"
  3. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  4. xmlns:bx="urn:base-library"
  5. targetNamespace="urn:second-library">
  6. <xsd:import
  7. namespace = "urn:base-library"
  8. schemaLocation = "import_base_library.xsd"
  9. />
  10. <xsd:complexType name="Second_Type">
  11. <xsd:sequence>
  12. <xsd:element name="SampleProperty" type="bx:SampleBase_Type"/>
  13. </xsd:sequence>
  14. </xsd:complexType>
  15. </schema>