<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:yahoo:prodrev" xmlns="urn:yahoo:prodrev" elementFormDefault="qualified">
 <xs:element name="ResultSet">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="Review" type="ReviewType" minOccurs="0" maxOccurs="100"/>
   </xs:sequence>
   <xs:attribute name="totalReviewsAvailable" type="xs:integer" use="required"/>
   <xs:attribute name="firstReviewPosition" type="xs:integer" use="required"/>
  </xs:complexType>
 </xs:element>
 <xs:complexType name="ReviewType">
  <xs:sequence>
   <xs:element name="Title" type="xs:string"/>
   <xs:element name="Reviewer" type="xs:string"/>
   <xs:element name="CreateTime" type="xs:integer"/>
   <xs:element name="HelpfulRecommendations" type="xs:integer"/>
   <xs:element name="TotalRecommendations" type="xs:integer"/>
   <xs:element name="OverallRating" type="RatingValueType"/>
   <xs:element name="Pro" type="xs:string"/>
   <xs:element name="Con" type="xs:string"/>
   <xs:element name="Posting" type="xs:string"/>
  </xs:sequence>
 </xs:complexType>
 <xs:simpleType name="RatingValueType">
  <xs:restriction base="xs:decimal">
   <xs:minInclusive value="0"/>
   <xs:maxInclusive value="5"/>
  </xs:restriction>
 </xs:simpleType>
</xs:schema>
