<xsd:simpleType name="LeadTypeEnumeratedType">
<xsd:annotation>
<xsd:documentation source="http://www.starstandard.org/">Type of Lead - I = Individual, B = business</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:normalizedString">
<xsd:enumeration value="I">
<xsd:annotation>
<xsd:documentation>Individual</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="B">
<xsd:annotation>
<xsd:documentation>Business</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Other">
<xsd:annotation>
<xsd:documentation>Other</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|