Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / extensions / extGPE-gvSIG / testdata / cities.xsd @ 18292

History | View | Annotate | Download (1.05 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
 elementFormDefault="qualified"
7
 attributeFormDefault="unqualified" 
8
 version="2.1.2">
9
   <xs:import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengis.net/gml/2.1.2/feature.xsd" />
10
   <xs:element name="Localidad" type="localidad_Type" substitutionGroup="gml:_Feature"/>
11
   <xs:complexType name="localidad_Type">
12
         <xs:complexContent>
13
            <xs:extension base="gml:AbstractFeatureType">
14
               <xs:sequence>
15
                  <xs:element name="Population" type="xs:integer" />
16
                  <xs:element name="Country" type="xs:string" />
17
                  <xs:element name="Capital" type="xs:boolean" />
18
                  <xs:element name="area" type="gml:GeometryPropertyType" />
19
               </xs:sequence>
20
            </xs:extension>
21
         </xs:complexContent>
22
    </xs:complexType>
23
</xs:schema>