Data
- Default Namespace
- XML Schema File: ns0.xsd
The data in this namespace is divided into elements and types. Types define the structure of the data. Elements define specific instances of the types, and are therefore more relevant to REST endpoints, which generally consume and/or produce elements.
The following elements are members of this namespace:
- agent
- agents
- content
- forecast
- forecasting
- forecasts
- image
- link
- links
- locations
- market
- messages
- photoSize
- photoSizes
- profile
- profiles
- response
- response
- response
- response
- response
- response
- response
- response
- response
- response
- reviews
- sale
- sales
- status
The following types are members of this namespace:
- agent
- agents
- contactAgent
- content
- editUser
- findAgents
- findProfiles
- forecast
- forecasting
- forecasts
- getAgent
- getForecasting
- getMarket
- getProfile
- getReviews
- getSales
- histories
- history
- image
- link
- links
- location
- locations
- market
- messages
- photoSize
- photoSizes
- profile
- profiles
- review
- reviews
- sale
- sales
- status
Element agent
- Type: agent
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"?>
<agent id="...">
<sales>
<!--content of type 'sales'-->
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<reviews>
<!--content of type 'reviews'-->
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</agent>
Example JSON
{
"id" : "...",
"sales" : {
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
},
"profile" : {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
},
"reviews" : {
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
}
Element agents
- Type: agents
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="...">
<!--content of type 'agent'-->
<sales>
<!--content of type 'sales'-->
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<reviews>
<!--content of type 'reviews'-->
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</agent>
<agent>
<!--(another 'agent' type)-->
</agent>
<!--...more "agent" elements...-->
</agents>
Example JSON
{
"agent" : [ {
"id" : "...",
"sales" : {
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
},
"profile" : {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
},
"reviews" : {
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
}, ... ]
}
Element content
- Type: content
User: marc Date: May 12, 2009 Time: 8:28:24 PM
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"?>
<content type="...">...</content>
Example JSON
{
"type" : "...",
"value" : "..."
}
Element forecast
- Type: forecast
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"?>
<forecast>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
Example JSON
{
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}
Element forecasting
- Type: forecasting
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"?>
<forecasting>
<image height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</image>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</forecasting>
Example JSON
{
"image" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
}
Element forecasts
- Type: forecasts
A root element for a collection of forecasts. The underlying data source can be either the forecasts of an individual agent or the aggregate forecasts of multiple agents.
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"?>
<forecasts>
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
Example JSON
{
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
Element image
- Type: image
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"?>
<image height="..." alt="..." width="..." url="..." />
Example JSON
{
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
}
Element link
- Type: link
User: marc Date: Mar 24, 2008 Time: 6:44:23 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"?>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="..." />
Example JSON
{
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}
Element links
- Type: links
User: marc Date: May 13, 2009 Time: 5:44:51 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"?>
<links>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</links>
Example JSON
{
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
Element locations
- Type: locations
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"?>
<locations>
<location>
<!--content of type 'location'-->
<id>
<!--content of type 'int'-->
...
</id>
<type>
<!--content of type 'string'-->
...
</type>
<name>
<!--content of type 'string'-->
...
</name>
</location>
<location>
<!--(another 'location' type)-->
</location>
<!--...more "location" elements...-->
</locations>
Example JSON
{
"location" : [ {
"id" : ...,
"type" : "...",
"name" : "..."
}, ... ]
}
Element market
- Type: market
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"?>
<market>
<name>
<!--content of type 'string'-->
...
</name>
<histories>
<!--content of type 'histories'-->
<history>
<!--content of type 'history'-->
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<value>
<!--content of type 'decimal'-->
...
</value>
</history>
<history>
<!--(another 'history' type)-->
</history>
<!--...more "history" elements...-->
</histories>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</market>
Example JSON
{
"name" : "...",
"histories" : {
"history" : [ {
"date" : "...",
"market" : "...",
"metric" : "...",
"value" : ...
}, ... ]
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
}
Element messages
- Type: messages
User: marc Date: Jul 17, 2009 Time: 3:05:10 PM
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"?>
<messages>
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
Example JSON
{
"message" : [ "...", ... ]
}
Element photoSize
- Type: photoSize
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"?>
<photoSize height="..." width="..." type="..." />
Example JSON
{
"height" : ...,
"width" : ...,
"type" : "..."
}
Element photoSizes
- Type: photoSizes
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"?>
<photoSizes>
<size height="..." width="..." type="...">
<!--content of type 'photoSize'-->
</size>
<size>
<!--(another 'photoSize' type)-->
</size>
<!--...more "size" elements...-->
</photoSizes>
Example JSON
{
"size" : [ {
"height" : ...,
"width" : ...,
"type" : "..."
}, ... ]
}
Element profile
- Type: profile
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"?>
<profile>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
Example JSON
{
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
}
Element profiles
- Type: profiles
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>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<profile>
<!--(another 'profile' type)-->
</profile>
<!--...more "profile" elements...-->
</profiles>
Example JSON
{
"profile" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
}, ... ]
}
Element response
- Type: contactAgent
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: findAgents
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<agent>
<!--content of type 'agents'-->
<agent id="...">
<!--content of type 'agent'-->
<sales>
<!--content of type 'sales'-->
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<reviews>
<!--content of type 'reviews'-->
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</agent>
<agent>
<!--(another 'agent' type)-->
</agent>
<!--...more "agent" elements...-->
</agent>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"agent" : {
"agent" : [ {
"id" : "...",
"sales" : {
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
},
"profile" : {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
},
"reviews" : {
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
}, ... ]
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: findProfiles
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
<profiles>
<!--content of type 'profiles'-->
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<profile>
<!--(another 'profile' type)-->
</profile>
<!--...more "profile" elements...-->
</profiles>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"profiles" : {
"profile" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
}, ... ]
}
}
Element response
- Type: getAgent
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<agent id="...">
<!--content of type 'agent'-->
<sales>
<!--content of type 'sales'-->
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
<reviews>
<!--content of type 'reviews'-->
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</agent>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"agent" : {
"id" : "...",
"sales" : {
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
},
"profile" : {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
},
"reviews" : {
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: getForecasting
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<forecasting>
<!--content of type 'forecasting'-->
<image height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</image>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</forecasting>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"forecasting" : {
"image" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: getMarket
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<market>
<!--content of type 'market'-->
<name>
<!--content of type 'string'-->
...
</name>
<histories>
<!--content of type 'histories'-->
<history>
<!--content of type 'history'-->
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<value>
<!--content of type 'decimal'-->
...
</value>
</history>
<history>
<!--(another 'history' type)-->
</history>
<!--...more "history" elements...-->
</histories>
<forecasts>
<!--content of type 'forecasts'-->
<total>
<!--content of type 'int'-->
...
</total>
<forecast>
<!--content of type 'forecast'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<future>
<!--content of type 'decimal'-->
...
</future>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
</forecasts>
</market>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"market" : {
"name" : "...",
"histories" : {
"history" : [ {
"date" : "...",
"market" : "...",
"metric" : "...",
"value" : ...
}, ... ]
},
"forecasts" : {
"total" : ...,
"forecast" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"market" : "...",
"metric" : "...",
"spot" : ...,
"future" : ...
}, ... ]
}
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: getProfile
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
<profile>
<!--content of type 'profile'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<photo height="..." alt="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
<experience>
<!--content of type 'float'-->
...
</experience>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<description>
<!--content of type 'string'-->
...
</description>
</profile>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"profile" : {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"photo" : {
"height" : ...,
"alt" : "...",
"width" : ...,
"url" : "..."
},
"experience" : ...,
"full_name" : "...",
"agentrank" : ...,
"description" : "..."
}
}
Element response
- Type: getReviews
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
<reviews>
<!--content of type 'reviews'-->
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"reviews" : {
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
}
}
Element response
- Type: getSales
User: marc Date: Oct 1, 2009 Time: 5:26:25 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"?>
<response>
<sales>
<!--content of type 'sales'-->
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"sales" : {
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element response
- Type: editUser
Created by IntelliJ IDEA. User: marc Date: Jul 24, 2010 Time: 7:07:31 AM
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
<id>
<!--content of type 'string'-->
...
</id>
<links>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</links>
<status code="...">
<!--content of type 'status'-->
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
</response>
Example JSON
{
"id" : "...",
"links" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element reviews
- Type: reviews
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>
<total>
<!--content of type 'int'-->
...
</total>
<review id="...">
<!--content of type 'review'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<recommend>
<!--content of type 'string'-->
...
</recommend>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
</reviews>
Example JSON
{
"total" : ...,
"review" : [ {
"id" : "...",
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"date" : "...",
"name" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"recommend" : "..."
}, ... ],
"satisfied" : ...,
"recommend" : ...
}
Element sale
- Type: sale
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"?>
<sale>
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
Example JSON
{
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}
Element sales
- Type: sales
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"?>
<sales>
<charts>
<!--content of type 'links'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<link id="..." title="..." text="..." mouseover="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<state>
<!--content of type 'string'-->
...
</state>
<address>
<!--content of type 'string'-->
...
</address>
<precision>
<!--content of type 'string'-->
...
</precision>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<market_days>
<!--content of type 'int'-->
...
</market_days>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
</sales>
Example JSON
{
"charts" : {
"link" : [ {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
},
"total" : ...,
"sale" : [ {
"link" : {
"id" : "...",
"title" : "...",
"text" : "...",
"mouseover" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"state" : "...",
"address" : "...",
"precision" : "...",
"property_type" : "...",
"transaction_side" : "...",
"market_days" : ...,
"latitude" : ...,
"longitude" : ...,
"list_price_final" : ...,
"sale_price_final" : ...,
"list_price_original" : ...,
"price_per_size_unit" : ...
}, ... ]
}
Element status
- Type: status
User: marc Date: May 13, 2009 Time: 5:37:18 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"?>
<status code="...">
<messages>
<!--content of type 'messages'-->
<message>
<!--content of type 'string'-->
...
</message>
<message>
<!--(another 'string' type)-->
</message>
<!--...more "message" elements...-->
</messages>
</status>
Example JSON
{
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
Type agent
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.Attributes
| name | type | description |
|---|---|---|
| id | string | (no documentation provided) |
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| sales (sales) | 0/1 | (no documentation provided) |
| profile (profile) | 0/1 | (no documentation provided) |
| reviews (reviews) | 0/1 | (no documentation provided) |
| forecasts (forecasts) | 0/1 | (no documentation provided) |
Type agents
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| agent (agent) | 0/unbounded | Get agent list |
Type contactAgent
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| status (status) | 0/1 | (no documentation provided) |
Type content
User: marc Date: May 12, 2009 Time: 8:28:24 PM
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.Attributes
| name | type | description |
|---|---|---|
| type | string | (no documentation provided) |
Value
- Type:
(no documentation provided)
Type editUser
Created by IntelliJ IDEA. User: marc Date: Jul 24, 2010 Time: 7:07:31 AM
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| id (string) | 0/1 | (no documentation provided) |
| links (links) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type findAgents
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| agent (agents) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type findProfiles
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| status (status) | 0/1 | (no documentation provided) |
| profiles (profiles) | 0/1 | (no documentation provided) |
Type forecast
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | Get link |
| date (dateTime) | 0/1 | Get the future date which is the target of this forecast |
| market (string) | 0/1 | Get the market's name |
| metric (string) | 0/1 | (no documentation provided) |
| spot (decimal) | 0/1 | (no documentation provided) |
| future (decimal) | 0/1 | (no documentation provided) |
Type forecasting
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| image (image) | 0/1 | Get the chart image |
| forecasts (forecasts) | 0/1 | Set a collection of aggregate forecasts for a particular location |
Type forecasts
A root element for a collection of forecasts. The underlying data source can be either the forecasts of an individual agent or the aggregate forecasts of multiple agents.
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| total (int) | 0/1 | Get the total number of forecasts |
| forecast (forecast) | 0/unbounded | Get list of forecasts |
Type getAgent
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| agent (agent) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type getForecasting
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| forecasting (forecasting) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type getMarket
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| market (market) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type getProfile
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| status (status) | 0/1 | (no documentation provided) |
| profile (profile) | 0/1 | (no documentation provided) |
Type getReviews
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| status (status) | 0/1 | (no documentation provided) |
| reviews (reviews) | 0/1 | (no documentation provided) |
Type getSales
User: marc Date: Oct 1, 2009 Time: 5:26:25 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| sales (sales) | 0/1 | (no documentation provided) |
| status (status) | 0/1 | (no documentation provided) |
Type histories
User: marc Date: Apr 25, 2009 Time: 2:40:22 PM
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| history (history) | 0/unbounded | (no documentation provided) |
Type history
User: marc Date: Apr 25, 2009 Time: 2:40:38 PM
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| date (dateTime) | 0/1 | (no documentation provided) |
| market (string) | 0/1 | (no documentation provided) |
| metric (string) | 0/1 | (no documentation provided) |
| value (decimal) | 0/1 | (no documentation provided) |
Type image
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.Attributes
| name | type | description |
|---|---|---|
| height | int | (no documentation provided) |
| alt | string | (no documentation provided) |
| width | int | (no documentation provided) |
| url | string | (no documentation provided) |
Type link
User: marc Date: Mar 24, 2008 Time: 6:44:23 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.Attributes
| name | type | description |
|---|---|---|
| id | string | (no documentation provided) |
| title | string | (no documentation provided) |
| text | string | (no documentation provided) |
| mouseover | string | (no documentation provided) |
| rel | string | (no documentation provided) |
| type | string | (no documentation provided) |
| href | string | (no documentation provided) |
Type links
User: marc Date: May 13, 2009 Time: 5:44:51 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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/unbounded | List of links |
Type location
User: marc Date: Mar 4, 2008 Time: 6:39:03 PM
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| id (int) | 1/1 | (no documentation provided) |
| type (string) | 0/1 | (no documentation provided) |
| name (string) | 0/1 | (no documentation provided) |
Type locations
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| location (location) | 0/unbounded | (no documentation provided) |
Type market
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| name (string) | 0/1 | Get the name of this market |
| histories (histories) | 0/1 | (no documentation provided) |
| forecasts (forecasts) | 0/1 | Get a collection of aggregate forecasts for a particular location |
Type messages
User: marc Date: Jul 17, 2009 Time: 3:05:10 PM
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| message (string) | 0/unbounded | Get messages |
Type photoSize
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.Attributes
| name | type | description |
|---|---|---|
| height | int | (no documentation provided) |
| width | int | (no documentation provided) |
| type | string | (no documentation provided) |
Type photoSizes
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| size (photoSize) | 0/unbounded | (no documentation provided) |
Type profile
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | (no documentation provided) |
| photo (image) | 0/1 | (no documentation provided) |
| experience (float) | 1/1 | (no documentation provided) |
| full_name (string) | 0/1 | (no documentation provided) |
| agentrank (int) | 0/1 | (no documentation provided) |
| description (string) | 0/1 | (no documentation provided) |
Type profiles
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| profile (profile) | 0/unbounded | Get profiles |
Type review
User: marc Date: Mar 4, 2008 Time: 6:39:03 PM
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.Attributes
| name | type | description |
|---|---|---|
| id | string | (no documentation provided) |
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | (no documentation provided) |
| date (dateTime) | 0/1 | (no documentation provided) |
| name (string) | 0/1 | (no documentation provided) |
| email (string) | 0/1 | (no documentation provided) |
| comment (string) | 0/1 | (no documentation provided) |
| satisfied (string) | 0/1 | (no documentation provided) |
| recommend (string) | 0/1 | (no documentation provided) |
Type reviews
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| total (int) | 0/1 | Get the total number of reviews |
| review (review) | 0/unbounded | Get client reviews list |
| satisfied (decimal) | 0/1 | (no documentation provided) |
| recommend (decimal) | 0/1 | (no documentation provided) |
Type sale
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | (no documentation provided) |
| zip (string) | 0/1 | (no documentation provided) |
| city (string) | 0/1 | (no documentation provided) |
| state (string) | 0/1 | (no documentation provided) |
| address (string) | 0/1 | (no documentation provided) |
| precision (string) | 0/1 | (no documentation provided) |
| property_type (string) | 0/1 | (no documentation provided) |
| transaction_side (string) | 0/1 | (no documentation provided) |
| market_days (int) | 0/1 | (no documentation provided) |
| latitude (decimal) | 0/1 | (no documentation provided) |
| longitude (decimal) | 0/1 | (no documentation provided) |
| list_price_final (decimal) | 0/1 | (no documentation provided) |
| sale_price_final (decimal) | 0/1 | (no documentation provided) |
| list_price_original (decimal) | 0/1 | (no documentation provided) |
| price_per_size_unit (decimal) | 0/1 | (no documentation provided) |
Type sales
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.Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| charts (links) | 0/1 | Get chart links |
| total (int) | 0/1 | Get the total number of sale transactions |
| sale (sale) | 0/unbounded | Get sales list |
Type status
User: marc Date: May 13, 2009 Time: 5:37:18 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.Attributes
| name | type | description |
|---|---|---|
| code | int | (no documentation provided) |
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| messages (messages) | 0/1 | (no documentation provided) |