<xs:simpleType name="PersonCommission">
<xs:annotation>
<xs:documentation>
- The field should reflect if the member is acquiring income based on a commission based plan.
- the field must have one of the values below:
1 = Yes, some (or all) of the member's income is based on a commission plan.
2 = No, the member's income is not based on a commission plan.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="1" />
<xs:enumeration value="2" />
</xs:restriction>
</xs:simpleType>
|