<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2011 rel. 3 sp1 (http://www.altova.com) by IMA (Université Catholique de l'Ouest) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="solutions">
		<xs:annotation>
			<xs:documentation>Root element</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element name="solution" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>The objective function for the solution</xs:documentation>
					</xs:annotation>
					<xs:complexType mixed="true">
						<xs:simpleContent>
							<xs:extension base="xs:double">
								<xs:attribute name="instance" type="xs:string" use="required">
									<xs:annotation>
										<xs:documentation>The unique identifier of the instance registered in www.vrp-rep.org</xs:documentation>
									</xs:annotation>
								</xs:attribute>
								<xs:attribute name="optimal" type="xs:boolean" fixed="true">
									<xs:annotation>
										<xs:documentation>True if the solution is a proven optimum and false otherwise. If you are not sure of the status (optimal or not) fix this attribute to false.</xs:documentation>
									</xs:annotation>
								</xs:attribute>
							</xs:extension>
						</xs:simpleContent>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
		<xs:key name="instance">
			<xs:annotation>
				<xs:documentation>The instance name should be unique</xs:documentation>
			</xs:annotation>
			<xs:selector xpath="solution"/>
			<xs:field xpath="@instance"/>
		</xs:key>
	</xs:element>
</xs:schema>
