Statistics
| Revision:

root / trunk / libraries / libGPE / testdata / WithSchemaLocationLinked.xsd @ 12175

History | View | Annotate | Download (1.2 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<xs:schema targetNamespace="http://www.gvsig.com/cit" 
3
	xmlns:cit="http://www.gvsig.com/cit" 
4
	xmlns:gml="http://www.opengis.net/gml" 
5
	xmlns:xs="http://www.w3.org/2001/XMLSchema" 
6
	
7
	elementFormDefault="qualified" 
8
	attributeFormDefault="unqualified" 
9
	version="2.1.2">
10
	<xs:import namespace="http://www.opengis.net/gml" schemaLocation="feature.xsd"/>
11
	<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="cities_Type">
12
	<xs:complexContent>
13
		<xs:extension base="gml:AbstractFeatureType">
14
			<xs:sequence>
15
				<xs:element name="the_geom" minOccurs="0" nillable="true" type="gml:PointPropertyType"/>
16
				<xs:element name="NAME" minOccurs="0" nillable="true" type="xs:string"/>
17
				<xs:element name="CAPITAL" minOccurs="0" nillable="true" type="xs:string"/>
18
				<xs:element name="PROV_NAME" minOccurs="0" nillable="true" type="xs:string"/>
19
				<xs:element name="POPULATION" minOccurs="0" nillable="true" type="xs:double"/>
20
				<xs:element name="PK" minOccurs="0" nillable="true" type="xs:double"/>
21
			</xs:sequence>
22
		</xs:extension>
23
	</xs:complexContent>
24
	</xs:complexType>
25
	<xs:element name="cities" type="cit:cities_Type" substitutionGroup="gml:_Feature"/>
26
</xs:schema>