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