emailType

An email address.  Broken into two parts (id and domain) to help prevent email harvesting.

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
domain xsd:string required
domain half of email address (hotmail.com)
id xsd:string required
id half of email address (billgates2004)

Used By

Source

<xsd:complexType name="emailType">
  <xsd:annotation>
    <xsd:documentation>An email address. Broken into two parts (id and domain) to help prevent email harvesting.</xsd:documentation>
  </xsd:annotation>
  <xsd:attribute name="id" type="xsd:string" use="required">
    <xsd:annotation>
      <xsd:documentation>id half of email address (billgates2004)</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute name="domain" type="xsd:string" use="required">
    <xsd:annotation>
      <xsd:documentation>domain half of email address (hotmail.com)</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
</xsd:complexType>