<?xml version="1.0" encoding="Shift_JIS"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" >


<xs:element name="EMPLOYEES" type="EMPLOYEES_type" />	
<xs:element name="EMPLOYEE" type="EMPLOYEE_type" />
<xs:element name="Name" type="xs:string"/>
<xs:element name="Dept" type="xs:string" />
<xs:attribute name="empid" type="xs:ID" />

<xs:complexType name="EMPLOYEES_type">
	<xs:sequence >
		<xs:element ref="EMPLOYEE" minOccurs="0" maxOccurs="unbounded"/>
	</xs:sequence> 
</xs:complexType>

<xs:complexType name="EMPLOYEE_type">
	<xs:sequence >
		<xs:element ref="Name" />
		<xs:element ref="Dept" />
	</xs:sequence>
	<xs:attribute ref="empid" use="required"/>
</xs:complexType>





</xs:schema>

