<xs:complexType name="Uri">
<xs:annotation>
<xs:documentation>A uniform resource identifier. In general, this is expected to be an URL (for example, to link to an image on a website, in which case the 'type' attribute might be 'image' and 'desc' might be 'image of a California sea hare').</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="desc" type="xs:token"/>
<xs:attribute name="type" type="xs:token"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType> |