<?xml version="1.0"?>
<xs:schema targetNamespace="http://geo.gov.example/termsets#" 
           xmlns:xs="http://www.w3.org/2001/XMLSchema"
           elementFormDefault="qualified"
>
  <xs:element name="location">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="state" type="xs:string" />
        <xs:element name="county" type="xs:string" />
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

