<?xml version="1.0" ?>
<xsd:schema 
   targetNamespace="http://www.someserver.example.com/abc"
   xmlns:abc="http://www.someserver.example.com/abc"
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   xmlns:gml="http://www.opengis.net/gml/3.2"
   elementFormDefault="qualified"
   version="2.0.2">

   <xsd:import namespace="http://www.opengis.net/gml/3.2"
               schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>

   <!-- =============================================
        Road 
        ============================================= -->
   <xsd:element name="Road"
                type="abc:RoadType"
                substitutionGroup="gml:AbstractFeature"/>
   <xsd:complexType name="RoadType">
      <xsd:complexContent>
         <xsd:extension base="gml:AbstractFeatureType">
            <xsd:sequence>
               <xsd:element name="numLanes" type="xsd:nonNegativeInteger"/>
               <xsd:element name="centerline" type="gml:CurvePropertyType"/>
            </xsd:sequence>
         </xsd:extension>
      </xsd:complexContent>
   </xsd:complexType>

</xsd:schema>
