<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://johanpeeters.com/data" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:data="http://johanpeeters.com/data">
	<!-- salami slice schema -->	<element name="ID" type="int"/>
	<element name="Name" type="string"/>
	<element name="Element">
		<complexType>
			<sequence>
				<element ref="data:ID"/>
				<element ref="data:Name" minOccurs="0"/>
			</sequence>
		</complexType>
	</element>
	<element name="Collection">
		<complexType>
			<sequence>
				<element ref="data:Element" minOccurs="0" maxOccurs="unbounded"/>
			</sequence>
		</complexType>
	</element>
	<element name="Response">
		<complexType name="tResponse">
			<sequence>
				<element ref="data:Collection"/>
			</sequence>
		</complexType>
	</element>
</schema>
