Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 2db1603d248eed5d0d3f775fd5a187fcb2c66e27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.example.org/Main"
	elementFormDefault="qualified"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="http://www.example.org/Main">
    <xsd:include schemaLocation="../../Include1.xsd"></xsd:include>

    <xsd:complexType name="MainCT1">
    	<xsd:sequence>
    		<xsd:element name="localElem1" type="ImpST1"></xsd:element>
    	</xsd:sequence>
    </xsd:complexType>
</xsd:schema>

Back to the top