<xsd:complexType name="ContactInformation">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type that represents how to contact an individual or organization.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="telephone" type="TelephoneNumber" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">A telephonic contact.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="email" type="NormalizedString" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">An address on an electronic mail or messaging sysem .</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="address" type="Address" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A postal or street address.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|