<?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" elementFormDefault="qualified">
	<!-- Venetian blinds -->
	<complexType name="tElement">
		<sequence>
			<element name="ID" type="int"/>
			<element name="Name" type="string" minOccurs="0"/>
		</sequence>
	</complexType>
	<complexType name="tCollection">
		<sequence>
			<element name="Element" type="data:tElement" minOccurs="0" maxOccurs="unbounded"/>
		</sequence>
	</complexType>
	<complexType name="tResponse">
		<sequence>
			<element name="Collection" type="data:tCollection"/>
		</sequence>
	</complexType>
	<element name="Response" type="data:tResponse"/>
</schema>
