reviews element

Type: reviews
Namespace: (default namespace)
XML Schema: ns0.xsd

User: marc Date: Mar 4, 2008 Time: 6:15:00 AM

THIS SOFTWARE IS COPYRIGHTED. THE SOFTWARE MAY NOT BE COPIED REPRODUCED, TRANSLATED, OR REDUCED TO ANY ELECTRONIC MEDIUM OR MACHINE READABLE FORM WITHOUT THE PRIOR WRITTEN CONSENT OF SOCO TECHNOLOGIES.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <reviews start_index="..." max_results="..." last_index="..." total_results="..." first_index="..."> <satisfied>...</satisfied> <recommend>...</recommend> <review id="..." key="..."> <link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." /> <date>...</date> <slugs> <slug type="...">...</slug> <slug type="...">...</slug> <!--...more "slug" elements...--> </slugs> <name>...</name> <email>...</email> <title>...</title> <comment>...</comment> <satisfied>...</satisfied> <recommend>...</recommend> </review> <review id="..." key="..."> <!--...--> </review> <!--...more "review" elements...--> </reviews>

Example JSON

{ "satisfied" : ..., "recommend" : ..., "review" : [ { "id" : ..., "key" : "...", "link" : { "id" : "...", "title" : "...", "text" : "...", "mouseover" : "...", "rel" : "...", "type" : "...", "href" : "..." }, "date" : "...", "slugs" : { "slug" : [ { "type" : "hyphen", "value" : "..." }, ... ] }, "name" : "...", "email" : "...", "title" : "...", "comment" : "...", "satisfied" : "...", "recommend" : "..." }, ... ], "start_index" : ..., "max_results" : ..., "last_index" : ..., "total_results" : ..., "first_index" : ... }