profiles element

Type: profiles
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"?> <profiles location="..." context="..." start_index="..." max_results="..." last_index="..." total_results="..." first_index="..."> <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> <profile id="..." username="..." activated="..."> <!--...--> </profile> <!--...more "profile" elements...--> </profiles>

Example JSON

{ "location" : "...", "context" : "city", "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" : ... }, ... ], "start_index" : ..., "max_results" : ..., "last_index" : ..., "total_results" : ..., "first_index" : ... }