<xs:complexType name="EmployeeInfoType">
<xs:annotation>
<xs:documentation xml:lang="en">Employment identification; using an employee ID number, title, level within the company, and an indication of their status (e.g., active, retired, on leave, or terminated from employment). Additional information about an employee can be entered into the element, including the name of the employee, if it differs from the person name identified as a customer or contact.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="StringLength0to64">
<xs:attribute name="EmployeeId" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier assigned to the employee.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeLevel" type="StringLength1to16">
<xs:annotation>
<xs:documentation xml:lang="en">Level in employer organization (e.g. seniority) that coveys privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeTitle" type="StringLength1to64">
<xs:annotation>
<xs:documentation xml:lang="en">Title of employee in the employer company that conveys rank or privileges.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EmployeeStatus" type="OTA_CodeType" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Status of employment. Refer to OTA Code List Employee Status (EMP).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
|