agents element

Type: agents
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"?> <agents> <agent id="..."> <sales longitude="..." latitude="..." start_index="..." max_results="..." last_index="..." total_results="..." first_index="..."> <sale id="..." longitude="..." latitude="..." key="..."> <link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." /> <list_date>...</list_date> <sold_date>...</sold_date> <slugs> <slug type="...">...</slug> <slug type="...">...</slug> <!--...more "slug" elements...--> </slugs> <zip>...</zip> <city>...</city> <state>...</state> <title>...</title> <address>...</address> <precision>...</precision> <property_type>...</property_type> <transaction_side>...</transaction_side> <market_days>...</market_days> <list_price_final>...</list_price_final> <sale_price_final>...</sale_price_final> <list_price_original>...</list_price_original> <price_per_size_unit>...</price_per_size_unit> </sale> <sale id="..." longitude="..." latitude="..." key="..."> <!--...--> </sale> <!--...more "sale" elements...--> </sales> <charts> <image height="..." alt="..." width="..." url="..." /> <image height="..." alt="..." width="..." url="..."> <!--...--> </image> <!--...more "image" elements...--> </charts> <profile id="..." username="..." activated="..."> <link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." /> <photo height="..." alt="..." width="..." url="..." /> <slugs> <slug type="...">...</slug> <slug type="...">...</slug> <!--...more "slug" elements...--> </slugs> <title>...</title> <full_name>...</full_name> <description>...</description> <rank>...</rank> <sales>...</sales> <reviews>...</reviews> <forecasts>...</forecasts> <experience>...</experience> </profile> <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> <forecasts start_index="..." max_results="..." last_index="..." total_results="..." first_index="..."> <title>...</title> <forecast id="..." key="..."> <link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." /> <date>...</date> <slugs> <slug type="...">...</slug> <slug type="...">...</slug> <!--...more "slug" elements...--> </slugs> <body>...</body> <title>...</title> <market>...</market> <metric>...</metric> <spot>...</spot> <future>...</future> </forecast> <forecast id="..." key="..."> <!--...--> </forecast> <!--...more "forecast" elements...--> </forecasts> </agent> <agent id="..."> <!--...--> </agent> <!--...more "agent" elements...--> </agents>

Example JSON

{ "agent" : [ { "id" : "...", "sales" : { "longitude" : ..., "latitude" : ..., "sale" : [ { "id" : ..., "longitude" : ..., "latitude" : ..., "key" : "...", "link" : { "id" : "...", "title" : "...", "text" : "...", "mouseover" : "...", "rel" : "...", "type" : "...", "href" : "..." }, "list_date" : "...", "sold_date" : "...", "slugs" : { "slug" : [ { "type" : "hyphen", "value" : "..." }, ... ] }, "zip" : "...", "city" : "...", "state" : "...", "title" : "...", "address" : "...", "precision" : "...", "property_type" : "...", "transaction_side" : "...", "market_days" : ..., "list_price_final" : ..., "sale_price_final" : ..., "list_price_original" : ..., "price_per_size_unit" : ... }, ... ], "start_index" : ..., "max_results" : ..., "last_index" : ..., "total_results" : ..., "first_index" : ... }, "charts" : { "image" : [ { "height" : ..., "alt" : "...", "width" : ..., "url" : "..." }, ... ] }, "profile" : { "id" : ..., "username" : "...", "activated" : false, "link" : { "id" : "...", "title" : "...", "text" : "...", "mouseover" : "...", "rel" : "...", "type" : "...", "href" : "..." }, "photo" : { "height" : ..., "alt" : "...", "width" : ..., "url" : "..." }, "slugs" : { "slug" : [ { "type" : "hyphen", "value" : "..." }, ... ] }, "title" : "...", "full_name" : "...", "description" : "...", "rank" : ..., "sales" : ..., "reviews" : ..., "forecasts" : ..., "experience" : ... }, "reviews" : { "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" : ... }, "forecasts" : { "title" : "...", "forecast" : [ { "id" : ..., "key" : "...", "link" : { "id" : "...", "title" : "...", "text" : "...", "mouseover" : "...", "rel" : "...", "type" : "...", "href" : "..." }, "date" : "...", "slugs" : { "slug" : [ { "type" : "hyphen", "value" : "..." }, ... ] }, "body" : "...", "title" : "...", "market" : "...", "metric" : "...", "spot" : ..., "future" : ... }, ... ], "start_index" : ..., "max_results" : ..., "last_index" : ..., "total_results" : ..., "first_index" : ... } }, ... ] }