<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="Employee">
        <xs:complexType>
            <xs:sequence>
                <xs:element minOccurs="0" name="FirstName" type="xs:string"/>
                <xs:element minOccurs="0" name="LastName" type="xs:string"/>
                <xs:element minOccurs="0" name="MaritalStatus" type="xs:string"/>
                <xs:element minOccurs="0" name="Email" type="xs:string"/>
                <xs:element minOccurs="0" name="EmployeeID" type="xs:string"/>
                <xs:element minOccurs="0" name="Department">
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:enumeration value="Finance"/>
						<xs:enumeration value="Sales"/>
						<xs:enumeration value="Marketing"/>
					</xs:restriction>
				</xs:simpleType>
				</xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>
