<?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="unqualified" 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="test:Float64_Type">
			<minInclusive value="0.0"/>
			<maxInclusive value="250.0"/>
		</restriction>
	</simpleType>
	<element name="Offset_Value" type="coords:Offset_Value_Type"/>
	<!--************************************-->
	<!--Inherits from Meter_Type. -->
	<complexType name="Slide_Offset_Type">
		<complexContent>
			<restriction base="test:Scientific_Unit_Type">
				<sequence>
					<element ref="test:Float64"/>
					<!--<element name="Value" type="test: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" use="optional"/>
				<attribute name="VR" type="test:VR_Type" use="optional"/>
			</restriction>
		</complexContent>
	</complexType>
</schema>
