<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:two="http://com.leveltwo" xmlns:tns="http://com.levelone" targetNamespace="http://com.levelone" elementFormDefault="unqualified" attributeFormDefault="unqualified">
	<xs:import namespace="http://com.leveltwo" schemaLocation="LevelTwo.xsd"/>
	<xs:element name="LevelOne" type="tns:LevelOneType"/>
	<xs:complexType name="LevelOneType">
		<xs:sequence>
			<xs:element name="LevelTwo" type="two:LevelTwoType" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
</xs:schema>

