<xsd:complexType name="PublicationHistoryType">
<xsd:annotation>
<xsd:documentation>This is used in the context of a resume or CV to list articles, books, or other publications authored or co-authored by an individual. </xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="FormattedPublicationDescription" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="type" type="PublicationTypes" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="Article" type="ArticleType" minOccurs="0" maxOccurs="unbounded" />
<xsd:element name="Book" type="BookType" minOccurs="0" maxOccurs="unbounded" />
<xsd:element name="ConferencePaper" type="ConferencePaperType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Contains details about papers or presentations prepared for delivery at a conference.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="OtherPublication" type="OtherPublicationType" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
|