<?xml version="1.0"?>
<form id="ChairForm" name="My New Chair Survey Form" xmlns="http://www.managingenergy.com/schemas/forms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.managingenergy.com/schemas/forms http://www2.managingenergy.com/FormsSchema.xsd">
<description>A survey form to collect information on chairs</description>
<sections>
<section id="main" name="Chair Details" identityField="ChairID">
<description>A section for chair details.</description>
<content>
<group name="Identification">
<field id="ChairID" name="ID" type="TextBox" required="true"></field>
</group>
<group name="Location">
<field id ="Building" name="Building" type="DropDown">
<items>
<item>Office A</item>
<item>Office B</item>
<item>Office C</item>
</items>
</field>
<field id="Room" name="Room #" type="TextBox" value="Unknown">
<description>The room where the chair is located</description>
</field>
</group>
<group name="Manufacturer Information">
<field id="ManufacturerName" name="Name" type="TextBox"></field>
<field id="ManufacturerContact" name="Contact" type="TextBox"></field>
<field id="ManufacturerPhone" name="Phone" type="TextBox"></field>
</group>
<group name="Warrantee Information">
<field id="DatePurchased" name="Date Purchased" type="Date"></field>
<field id="WarranteeExpiration" name="Warrantee Expiration" type="Date"></field>
</group>
<group name="Features">
<field id="BackAdjust" name="Adjustable Back" type="CheckBox" value="true"></field>
<field id="HeightAdjust" name="Adjustable Height" type="CheckBox" value="true"></field>
<field id="Armrests" name="Armrests" type="CheckBox"></field>
</group>
</content>
</section>
</sections>
</form>