<xs:complexType name="Person">
<xs:annotation>
<xs:documentation>A generic reference to a person, for authorship, etc</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="xs:string">
</xs:element>
<xs:element name="institution" type="xs:string" minOccurs="0">
</xs:element>
<xs:element name="email" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Useful to have. Note: something like '- at -' replacing the @ might be wise, in case a HTML version of the file goes online.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="comment" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Optional comment on their specific contribution</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType> |