<!-- Illustrates global declaration of `reportType' -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.grid2004.org/ns/report3"
xmlns="http://www.grid2004.org/ns/report3">
<xsd:complexType name="reportType">
<xsd:sequence>
<xsd:element ref="paragraph"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="report" type="reportType"/>
<xsd:element name="paragraph" type="xsd:string"/>
</xsd:schema>