<xsd:complexType name="VerificationType">
<xsd:sequence>
<xsd:element name="ContactInfo">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="PersonName" />
<xsd:element name="ContactMethod" type="ContactMethodType" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="ReasonForLeaving" type="xsd:string" minOccurs="0" />
<xsd:element name="PermissionToContact" type="xsd:boolean" minOccurs="0" />
<xsd:element name="VerifyEmployment" type="xsd:boolean" minOccurs="0" />
<xsd:element name="EligibleForRehire" type="xsd:boolean" minOccurs="0" />
<xsd:element name="AttendanceRating" type="RatingType" minOccurs="0" />
<xsd:element name="OverallPerformanceRating" type="RatingType" minOccurs="0" />
<xsd:element name="QuestionAnswerPair" type="EmploymentQuestionAnswerPairType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Usage is primarily for the results of a screening, but is not limited to that purpose. </xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|