<?xml version="1.0" encoding="utf-8"?>
<xsd:schema targetNamespace="http://schemas.monster.com/Seeker"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns="http://schemas.monster.com/Seeker"
    elementFormDefault="qualified">

  <xsd:element name="InputValidationFault">
    <xsd:complexType>
      <xsd:sequence>        
        <xsd:element name="ValidationErrorMessage" type="xsd:string" minOccurs="0" />
        <xsd:element name="InputValidationErrors" type="InputValidationErrorsType" minOccurs="0" />
      </xsd:sequence>
    </xsd:complexType>    
  </xsd:element>

  <xsd:complexType name="InputValidationErrorsType">
    <xsd:sequence>
      <xsd:element name="InputValidationError" type="InputValidationErrorType" minOccurs="0" maxOccurs="unbounded" />
    </xsd:sequence>
  </xsd:complexType>

  <xsd:complexType name="InputValidationErrorType">
    <xsd:sequence>
      <xsd:element name="FieldName" type="xsd:string" />
      <xsd:element name="ErrorMessage" type="xsd:string" minOccurs="0" />
    </xsd:sequence>
  </xsd:complexType>
   
</xsd:schema>