<xsd:simpleType name="EmailAddressType">
<xsd:annotation>
<xsd:documentation>Used for an email address. Allowed characters:</xsd:documentation>
<xsd:documentation>A-Z, a-z, 0-9, underscore, hyphen, ampersand, !, #, $, %, `, *, +, /, =, ?, ^, ', {, |, }, ~, and period</xsd:documentation>
<xsd:documentation>At least one of the characters followed by symbol @ followed by at least one of the characters</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="75" />
<xsd:pattern value="([A-Za-z0-9_\-&!#$%`*+/=?^'{|}~\.])+@([A-Za-z0-9_\-!#$%&`*+/=?^'{|}~\.])+">
</xsd:pattern>
</xsd:restriction>
</xsd:simpleType>
|