<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://com.levelthree" xmlns:four="http://com.levelfour" targetNamespace="http://com.levelthree" elementFormDefault="unqualified" attributeFormDefault="unqualified">
	<xs:import namespace="http://com.levelfour" schemaLocation="LevelFour.xsd"/>
	<xs:complexType name="LevelThreeType">
		<xs:sequence>
			<xs:element name="LevelThree" type="tns:LevelThreeSimpleType" minOccurs="0"/>
			<xs:element name="LevelFour" type="four:LevelFourType" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="LevelThreeSimpleType">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
</xs:schema>

