Polygon Polygon Schema Exterior/Interior schema LinearRing
Polygons are the most complex of the basic geometries. They have an internal structure that looks quite complex on first sigh,t but it is really quite simple if you study it carefully. As was mentioned before, a polygon is a closed area which is bounded by a ring. This is described in the element of the polygon which contains a which lists the actual points that form the ring of the polygon using a list of pos or coordinate elements. Since a polygon can also contain "holes" (or in GML terms interior rings), the polygon can also have 0 or more elements. Technically, you can have a polygon with no exterior ring, but I cannot actually think of a use for this.
 <gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:coordinates>.... </gml:coordinates>
</gml:LinearRing>
</gml:exterior>
<gml:interior>
<gml:LinearRing>
<gml:coordinates>.... </gml:coordinates>
</gml:LinearRing>
</gml:interior>
</gml:Polygon>