<?xml version="1.0" encoding="ISO-8859-1" ?>
<xml-java-binding-schema version="1.0-ea">
<options package="phones"/>
<element name="department" type="class" class="Department" root="true">
<content>
<element-ref name="person" property="persons"/>
</content>
</element>
<element name="person" type="class" class="Person">
<content>
<element-ref name="phone" property="phones"/>
<element-ref name="location" property="locations"/>
<element-ref name="hours" property="hours"/>
</content>
<attribute name="status" convert="Status"/>
</element>
<enumeration name="Status" members="undergrad grad ta faculty staff visitor"/>
<element name="hours" type="class" class="Hours">
<attribute name="type" convert="DayOfTheWeek"/>
</element>
<enumeration name="DayOfTheWeek" members="monday tuesday wednesday thursday friday"/>
<element name="location" type="class" class="Location">
<attribute name="type" convert="LocationType"/>
</element>
<enumeration name="LocationType" members="office home"/>
<element name="phone" type="class" class="Phone">
<attribute name="type" convert="PhoneType"/>
</element>
<enumeration name="PhoneType" members="office home cell fax"/>
</xml-java-binding-schema>