<descriptions xmlns="http://nwalsh.com/xmlns/nsdl#">

<!-- Copyright 2005 Norman Walsh. This work is licensed under a
     Creative Commons License: http://creativecommons.org/licenses/by-nc/2.0/ -->

<service xmlns:a="http://webservices.amazon.com/AWSECommerceService/2005-02-23"
	 name="booksbykeyword"
	 action="get"
	 uri="http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&amp;Operation=ItemSearch&amp;SearchIndex=Books&amp;">
  
  <request>
    <parameter name="SubscriptionId" type="xsd:string"/>
    <parameter name="Keywords" type="xsd:string"/>
  </request>

  <response>
    <result name="count"
	    select="/a:ItemSearchResponse/a:Items/a:TotalResults"/>

    <result name="time"
	    select="/a:ItemSearchResponse/a:OperationRequest/a:RequestProcessingTime"/>

    <result name="titles"
	    select="/a:ItemSearchResponse/a:Items/a:Item/a:ItemAttributes/a:Title"/>
  </response>
</service>

<service xmlns:a="http://webservices.amazon.com/AWSECommerceService/2005-02-23"
	 name="booksbyauthor"
	 action="get"
	 uri="http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&amp;Operation=ItemSearch&amp;SearchIndex=Books&amp;">
  
  <request>
    <parameter name="SubscriptionId" type="xsd:string"/>
    <parameter name="Author" type="xsd:string"/>
  </request>

  <response>
    <result name="count"
	    select="/a:ItemSearchResponse/a:Items/a:TotalResults"/>

    <result name="time"
	    select="/a:ItemSearchResponse/a:OperationRequest/a:RequestProcessingTime"/>

    <result name="titles"
	    select="/a:ItemSearchResponse/a:Items/a:Item/a:ItemAttributes/a:Title"/>
  </response>
</service>

</descriptions>
