<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:element name="birthPlace" type="xs:string"/>
	<xs:element name="birthday" type="xs:string"/>
	<xs:element name="comments" type="xs:string"/>
	<xs:element name="name" type="xs:string"/>
	<xs:element name="favouriteColor" type="xs:string"/>
        <xs:attribute name="id" type="xs:ID" use="required"/>
	<xs:element name="data">
		<xs:complexType>
			<xs:sequence maxOccurs="unbounded">
				<xs:element ref="item"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="item">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="name"/>
				<xs:element ref="birthday"/>
				<xs:element ref="birthPlace"/>
				<xs:element ref="favouriteColor"/>
				<xs:element ref="comments" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute ref="id" />
		</xs:complexType>
	</xs:element>
</xs:schema>
