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
- reviews
- sale
- sales
- status
The following types are members of this namespace:
Element agent
- Type: agent
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<agent id="...">
<reviews>
<!--content of type 'reviews'-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
<sales>
<!--content of type 'sales'-->
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</sales>
<profile>
<!--content of type 'profile'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</forecasts>
</agent>
Example JSON
{
"id" : "...",
"reviews" : {
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
},
"sales" : {
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
},
"profile" : {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
}
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'-->
<reviews>
<!--content of type 'reviews'-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
<sales>
<!--content of type 'sales'-->
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</sales>
<profile>
<!--content of type 'profile'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</forecasts>
</agent>
<agent>
<!--(another 'agent' type)-->
</agent>
<!--...more "agent" elements...-->
</agents>
Example JSON
{
"agent" : [ {
"id" : "...",
"reviews" : {
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
},
"sales" : {
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
},
"profile" : {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
}, ... ]
}
Element content
- Type: content
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<content type="...">...</content>
Example JSON
{
"type" : "...",
"value" : "..."
}
Element forecast
- Type: forecast
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<forecast>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
Example JSON
{
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}
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="..." width="..." url="...">
<!--content of type 'image'-->
</image>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</forecasts>
</forecasting>
Example JSON
{
"image" : {
"height" : ...,
"width" : ...,
"url" : "..."
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
}
Element forecasts
- Type: forecasts
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<forecasts>
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</forecasts>
Example JSON
{
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
Element image
- Type: image
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<image height="..." width="..." url="..." />
Example JSON
{
"height" : ...,
"width" : ...,
"url" : "..."
}
Element link
- Type: link
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<link title="..." text="..." rel="..." type="..." href="..." />
Example JSON
{
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}
Element links
- Type: links
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<links>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</links>
Example JSON
{
"link" : [ {
"title" : "...",
"text" : "...",
"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'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</forecasts>
</market>
Example JSON
{
"name" : "...",
"histories" : {
"history" : [ {
"date" : "...",
"market" : "...",
"metric" : "...",
"value" : ...
}, ... ]
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
}
Element messages
- Type: messages
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
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<profile>
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
Example JSON
{
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
}
Element profiles
- Type: profiles
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<profiles>
<profile>
<!--content of type 'profile'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<profile>
<!--(another 'profile' type)-->
</profile>
<!--...more "profile" elements...-->
</profiles>
Example JSON
{
"profile" : [ {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
}, ... ]
}
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'-->
<reviews>
<!--content of type 'reviews'-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
<sales>
<!--content of type 'sales'-->
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</sales>
<profile>
<!--content of type 'profile'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</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" : "...",
"reviews" : {
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
},
"sales" : {
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
},
"profile" : {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
}, ... ]
},
"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'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<profile>
<!--(another 'profile' type)-->
</profile>
<!--...more "profile" elements...-->
</profiles>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"profiles" : {
"profile" : [ {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
}, ... ]
}
}
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'-->
<reviews>
<!--content of type 'reviews'-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
<sales>
<!--content of type 'sales'-->
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</sales>
<profile>
<!--content of type 'profile'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</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" : "...",
"reviews" : {
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
},
"sales" : {
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
},
"profile" : {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
},
"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="..." width="..." url="...">
<!--content of type 'image'-->
</image>
<forecasts>
<!--content of type 'forecasts'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</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" : ...,
"width" : ...,
"url" : "..."
},
"forecasts" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
},
"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'-->
<forecast>
<!--content of type 'forecast'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<future>
<!--content of type 'decimal'-->
...
</future>
<spot>
<!--content of type 'decimal'-->
...
</spot>
<date>
<!--content of type 'dateTime'-->
...
</date>
<market>
<!--content of type 'string'-->
...
</market>
<metric>
<!--content of type 'string'-->
...
</metric>
</forecast>
<forecast>
<!--(another 'forecast' type)-->
</forecast>
<!--...more "forecast" elements...-->
<total>
<!--content of type 'int'-->
...
</total>
</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" : {
"forecast" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"future" : ...,
"spot" : ...,
"date" : "...",
"market" : "...",
"metric" : "..."
}, ... ],
"total" : ...
}
},
"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'-->
<experience>
<!--content of type 'float'-->
...
</experience>
<description>
<!--content of type 'string'-->
...
</description>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<full_name>
<!--content of type 'string'-->
...
</full_name>
<agentrank>
<!--content of type 'int'-->
...
</agentrank>
<photo height="..." width="..." url="...">
<!--content of type 'image'-->
</photo>
</profile>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"profile" : {
"experience" : ...,
"description" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"full_name" : "...",
"agentrank" : ...,
"photo" : {
"height" : ...,
"width" : ...,
"url" : "..."
}
}
}
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'-->
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
</response>
Example JSON
{
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
},
"reviews" : {
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
}
}
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'-->
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</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" : {
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
},
"status" : {
"code" : ...,
"messages" : {
"message" : [ "...", ... ]
}
}
}
Element reviews
- Type: reviews
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<reviews>
<satisfied>
<!--content of type 'decimal'-->
...
</satisfied>
<recommend>
<!--content of type 'decimal'-->
...
</recommend>
<total>
<!--content of type 'int'-->
...
</total>
<review>
<!--content of type 'review'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<recommend>
<!--content of type 'string'-->
...
</recommend>
<email>
<!--content of type 'string'-->
...
</email>
<comment>
<!--content of type 'string'-->
...
</comment>
<satisfied>
<!--content of type 'string'-->
...
</satisfied>
<date>
<!--content of type 'dateTime'-->
...
</date>
<name>
<!--content of type 'string'-->
...
</name>
</review>
<review>
<!--(another 'review' type)-->
</review>
<!--...more "review" elements...-->
</reviews>
Example JSON
{
"satisfied" : ...,
"recommend" : ...,
"total" : ...,
"review" : [ {
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"recommend" : "...",
"email" : "...",
"comment" : "...",
"satisfied" : "...",
"date" : "...",
"name" : "..."
}, ... ]
}
Element sale
- Type: sale
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<sale>
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
Example JSON
{
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}
Element sales
- Type: sales
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<sales>
<total>
<!--content of type 'int'-->
...
</total>
<sale>
<!--content of type 'sale'-->
<transaction_side>
<!--content of type 'string'-->
...
</transaction_side>
<longitude>
<!--content of type 'decimal'-->
...
</longitude>
<price_per_size_unit>
<!--content of type 'decimal'-->
...
</price_per_size_unit>
<list_price_original>
<!--content of type 'decimal'-->
...
</list_price_original>
<state>
<!--content of type 'string'-->
...
</state>
<latitude>
<!--content of type 'decimal'-->
...
</latitude>
<list_price_final>
<!--content of type 'decimal'-->
...
</list_price_final>
<precision>
<!--content of type 'string'-->
...
</precision>
<address>
<!--content of type 'string'-->
...
</address>
<sale_price_final>
<!--content of type 'decimal'-->
...
</sale_price_final>
<property_type>
<!--content of type 'string'-->
...
</property_type>
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<zip>
<!--content of type 'string'-->
...
</zip>
<city>
<!--content of type 'string'-->
...
</city>
<market_days>
<!--content of type 'int'-->
...
</market_days>
</sale>
<sale>
<!--(another 'sale' type)-->
</sale>
<!--...more "sale" elements...-->
<charts>
<!--content of type 'links'-->
<link title="..." text="..." rel="..." type="..." href="...">
<!--content of type 'link'-->
</link>
<link>
<!--(another 'link' type)-->
</link>
<!--...more "link" elements...-->
</charts>
</sales>
Example JSON
{
"total" : ...,
"sale" : [ {
"transaction_side" : "...",
"longitude" : ...,
"price_per_size_unit" : ...,
"list_price_original" : ...,
"state" : "...",
"latitude" : ...,
"list_price_final" : ...,
"precision" : "...",
"address" : "...",
"sale_price_final" : ...,
"property_type" : "...",
"link" : {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
},
"zip" : "...",
"city" : "...",
"market_days" : ...
}, ... ],
"charts" : {
"link" : [ {
"title" : "...",
"text" : "...",
"rel" : "...",
"type" : "...",
"href" : "..."
}, ... ]
}
}
Element status
- Type: status
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
Attributes
| name | type | description |
|---|---|---|
| id | string | (no documentation provided) |
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| reviews (reviews) | 0/1 | (no documentation provided) |
| sales (sales) | 0/1 | (no documentation provided) |
| profile (profile) | 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 content
Attributes
| name | type | description |
|---|---|---|
| type | string | (no documentation provided) |
Value
- Type:
(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
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | (no documentation provided) |
| future (decimal) | 0/1 | (no documentation provided) |
| spot (decimal) | 0/1 | (no documentation provided) |
| date (dateTime) | 0/1 | (no documentation provided) |
| market (string) | 0/1 | (no documentation provided) |
| metric (string) | 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
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| forecast (forecast) | 0/unbounded | (no documentation provided) |
| total (int) | 0/1 | (no documentation provided) |
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
Attributes
| name | type | description |
|---|---|---|
| height | int | (no documentation provided) |
| width | int | (no documentation provided) |
| url | string | (no documentation provided) |
Type link
Attributes
| name | type | description |
|---|---|---|
| title | string | (no documentation provided) |
| text | string | (no documentation provided) |
| rel | string | (no documentation provided) |
| type | string | (no documentation provided) |
| href | string | (no documentation provided) |
Type links
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/unbounded | (no documentation provided) |
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
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| message (string) | 0/unbounded | (no documentation provided) |
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
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| experience (float) | 1/1 | (no documentation provided) |
| description (string) | 0/1 | (no documentation provided) |
| link (link) | 0/1 | (no documentation provided) |
| full_name (string) | 0/1 | (no documentation provided) |
| agentrank (int) | 0/1 | (no documentation provided) |
| photo (image) | 0/1 | (no documentation provided) |
Type profiles
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| profile (profile) | 0/unbounded | (no documentation provided) |
Type review
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| link (link) | 0/1 | (no documentation provided) |
| recommend (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) |
| date (dateTime) | 0/1 | (no documentation provided) |
| name (string) | 0/1 | (no documentation provided) |
Type reviews
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| satisfied (decimal) | 0/1 | (no documentation provided) |
| recommend (decimal) | 0/1 | (no documentation provided) |
| total (int) | 0/1 | (no documentation provided) |
| review (review) | 0/unbounded | (no documentation provided) |
Type sale
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| transaction_side (string) | 0/1 | (no documentation provided) |
| longitude (decimal) | 0/1 | (no documentation provided) |
| price_per_size_unit (decimal) | 0/1 | (no documentation provided) |
| list_price_original (decimal) | 0/1 | (no documentation provided) |
| state (string) | 0/1 | (no documentation provided) |
| latitude (decimal) | 0/1 | (no documentation provided) |
| list_price_final (decimal) | 0/1 | (no documentation provided) |
| precision (string) | 0/1 | (no documentation provided) |
| address (string) | 0/1 | (no documentation provided) |
| sale_price_final (decimal) | 0/1 | (no documentation provided) |
| property_type (string) | 0/1 | (no documentation provided) |
| link (link) | 0/1 | (no documentation provided) |
| zip (string) | 0/1 | (no documentation provided) |
| city (string) | 0/1 | (no documentation provided) |
| market_days (int) | 0/1 | (no documentation provided) |
Type sales
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| total (int) | 0/1 | (no documentation provided) |
| sale (sale) | 0/unbounded | (no documentation provided) |
| charts (links) | 0/1 | (no documentation provided) |
Type status
Attributes
| name | type | description |
|---|---|---|
| code | int | (no documentation provided) |
Child Elements
| name (type) | min/max occurs |
description |
|---|---|---|
| messages (messages) | 0/1 | (no documentation provided) |