| <?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://www.w3schools.com"
xmlns="https://www.w3schools.com"
elementFormDefault="qualified">
<xs:element name="select.query">
  <xs:complexType>
    <xs:sequence>
    <xs:element name="request_query_select" minOccurs="0" type="methodSelectType">
      <xs:simpleType name="methodType">
        <xs:restriction base="xs:string">
          <xs:pattern value="[^.]* SELECT [^.]*\."/>
        </xs:restriction>
      </xs:simpleType>
    </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>
</xs:schema>
 |