<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema targetNamespace="http://schemas.monster.com/Seeker/Lookups" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://schemas.monster.com/Seeker/Lookups" xmlns:monster="http://schemas.monster.com" xmlns:ms="http://schemas.monster.com/Seeker" elementFormDefault="qualified">

  <xsd:import namespace="http://schemas.monster.com" schemaLocation="../../MonsterContextMetaData.xsd" />
  <xsd:import namespace="http://schemas.monster.com/Seeker" schemaLocation="../DataTypes.xsd" />

  <xsd:element name="GetAutocompleteEntitiesRequest" type="GetAutocompleteEntitiesRequestType" />

  <xsd:complexType name="GetAutocompleteEntitiesRequestType">
    <xsd:sequence>
      <xsd:element name="EntityType" type="ms:AutocompleteEntityType" />
      <xsd:element name="Seed" type="xsd:string" />
      <xsd:element name="MaximumMatches" type="xsd:int" />
      <xsd:element ref="monster:PropertyBag" minOccurs="0" />
    </xsd:sequence>
  </xsd:complexType>


  <xsd:element name="GetAutocompleteEntitiesResult" type="GetAutocompleteEntitiesResultType" />
  
  <xsd:complexType name="GetAutocompleteEntitiesResultType">
    <xsd:sequence>
      <xsd:element name="TooManyMatches" type="xsd:boolean" />
      <xsd:element name="Results">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="Result" type="ms:AutocompleteEntity" minOccurs="0" maxOccurs="unbounded" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:sequence>
  </xsd:complexType>
  
</xsd:schema>