<xsd:complexType name="AppointmentBaseType">
<xsd:sequence>
<xsd:element minOccurs="0" name="AppointmentDateTime" type="udt:DateTimeType">
<xsd:annotation>
<xsd:documentation>
Date and time of the appointment
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="AppointmentLocation" type="udt:TextType">
<xsd:annotation>
<xsd:documentation>
Location of the appointment... For example: Office;
Home
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="AppointmentNotes" type="udt:TextType">
<xsd:annotation>
<xsd:documentation>
Comments that relate to the appointment.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element maxOccurs="1" minOccurs="0" name="RequestedConsultantName" type="udt:NameType">
<xsd:annotation>
<xsd:documentation>
The name of the consultant with whom the consumer indicated
they would like to work.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|