<xsd:complexType name="linkType">
<xsd:annotation>
<xsd:documentation>A link to an external resource (Web page, digital photo, video clip, etc) with additional information.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<!-- elements must appear in this order -->
<xsd:element name="text" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Text of hyperlink.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="type" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Mime type of content (image/jpeg)</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="href" type="xsd:anyURI" use="required">
<xsd:annotation>
<xsd:documentation>URL of hyperlink.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType> |