personType

A person or organization.

Complex Type Information

Model

Children: email, link, name

Used By

Source

<xsd:complexType name="personType">
  <xsd:annotation>
    <xsd:documentation>A person or organization.</xsd:documentation>
  </xsd:annotation>
  <xsd:sequence>
    <!-- elements must appear in this order -->
    <xsd:element name="name" type="xsd:string" minOccurs="0">
      <xsd:annotation>
        <xsd:documentation>Name of person or organization.</xsd:documentation>
      </xsd:annotation>
    </xsd:element>
    <xsd:element name="email" type="emailType" minOccurs="0">
      <xsd:annotation>
        <xsd:documentation>Email address.</xsd:documentation>
      </xsd:annotation>
    </xsd:element>
    <xsd:element name="link" type="linkType" minOccurs="0">
      <xsd:annotation>
        <xsd:documentation>Link to Web site or other external information about person.</xsd:documentation>
      </xsd:annotation>
    </xsd:element>
  </xsd:sequence>
</xsd:complexType>