<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:test="http://CytometryML/Schemas/units_test" 
xmlns:coords="http://CytometryML/Schemas/coords" 
targetNamespace="http://CytometryML/Schemas/coords" 
elementFormDefault="qualified" attributeFormDefault="unqualified">
<import namespace="http://CytometryML/Schemas/units_test" schemaLocation="units_test.xsd"/>
<!-- Offsets are never negative. At the present time, the maximum value is reasonable -->
	<simpleType name="Offset_Value_Type">
		<restriction base="double">
			<minInclusive value="0.0"/>
			<maxInclusive value="250"/>
		</restriction>
	</simpleType>
	<!--************************************-->
	<!--Inherits from Meter_Type. Offset_Type is in millimeters-->
	<complexType name="X_Offset_Type" id="X_Offset_Type">
		<complexContent>
			<restriction base="test:Meter_Type">
				<sequence>
					<element name="Value" type="coords:Offset_Value_Type"/>
					<choice>
						<element name="Prefix_Name" type="test:Prefix_Name_Type" fixed="milli"/>
						<element name="Prefix_Case_Sen" type="test:Case_Sen_Type" fixed="m"/>
					</choice>
					<choice>
						<element name="Si_Unit_Name" type="test:Si_Unit_Name_Type" fixed="meter"/>
						<element name="Unit_Abbreviation" type="test:Unit_Abbreviations_Type" fixed="m"/>
					</choice>
				</sequence>
				<attribute name="Tag" type="test:Tag_Type" fixed="0040,072A"/>
				<attribute name="VR" type="test:VR_Type" fixed="DS"/>
			</restriction>
		</complexContent>
	</complexType>
</schema>