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: f4cda6aa787a1d581a458cb998ca44dfbed573f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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:imp="http://www.example.org/Import"
	xmlns="http://www.example.org/Main">

    <xsd:import schemaLocation="../../Import1.xsd" namespace="http://www.example.org/Import"></xsd:import>

	<xsd:complexType name="MainCT">
		<xsd:sequence>
            <xsd:group ref="MainGroupDefinition1"></xsd:group>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:group name="MainGroupDefinition1">
		<xsd:sequence>
			<xsd:element name="grElem1" type="xsd:string"></xsd:element>
		</xsd:sequence>
	</xsd:group>
</xsd:schema>

Back to the top