| Tag Name |
Type |
Optional/Required |
Description |
| <ccd_feed> |
|
Required |
Root |
| <properties> |
|
Required |
Container for all the properties (Contains multiple tags) |
| <property> |
|
Required |
an individual property Listing |
| <name> |
varchar(50) |
Optional |
Title/ Heading of the property (see XML example below) |
| <address> |
varchar(100) |
Required |
Property address, including the street name and number and apartment if applicable. |
| <city> |
varchar(50) |
Required |
city or suburb name |
| <state> |
varchar(50) |
Required |
The state name |
| <postcode> |
varchar(15) |
Required |
zip/postal code |
| <country> |
varchar(100) |
Optional |
Country name, defaults to USA |
| <latitude> |
float |
Optional |
Property Latitude |
| <longitude> |
float |
Optional |
Property longitude |
| <price> |
float |
Required |
Current sales price |
| <lot_size> |
int |
Optional |
The lot size in feet |
| <sq_feet> |
int |
Optional |
The square footage of the property itself, not the lot. |
| <garage_size> |
int |
Optional |
What size garage, I.e. 2 car (2) |
| <no_beds> |
int |
Optional |
Number of bedrooms |
| <no_baths> |
Float |
Optional |
Number of bathrooms |
| <no_floors> |
int |
Optional |
Number of floors |
| <year_built> |
int |
Optional |
4 digit year the property was built. (1965) |
| <amenities> |
text |
Optional |
comma seperated list of house amenities |
| <school_district> |
varcar(50) |
Optional |
The school district the property is in |
| <description> |
text |
Optional |
Full description of property. Include as much descriptive information about each listing as possible.
The more information we have, the more effective your listing will be.
|
| <propertytype> |
Acreage
Commercial
Condo
Coop
Duplex
Farm
Land
Log Cabin
Mobile Home
Multi Family
Ranch
Single Family
Townhome
Triplex
|
Required |
Type of structure |
| <seller> |
|
Required |
Container for seller information. This is used to provide contact information. |
| <seller_name> |
varchar(100) |
Required |
Name of the property seller |
| <seller_phone> |
varchar(20) |
Required |
Phone number of the property seller |
| <seller_fax> |
varchar(20) |
Optional |
Fax number of the property seller |
| <seller_email> |
varchar(100) |
Optional |
Sellers email address |
| </seller> |
|
|
|
| <agent> |
|
Optional |
Container for agent information |
| <agentname> |
varchar(100) |
Optional |
Agent's name |
| <agenturl> |
varchar(200) |
Optional |
Agent's website |
| <agentlogo> |
varchar(200) |
Optional |
Agent's Logo. Will be displayed with the property listing |
| </agent> |
|
|
|
| <addlurl> |
varchar(200) |
Required |
landing page for property |
| <listingid> |
varchar(50) |
Required |
Unique property ID |
| <photos> |
|
Optional |
Container for the listing property images |
| <photo> |
varchar(100) |
Optional |
URL to the property photo. May have up to 15 images per property
This is optional but highly recommended.
|
|
Example XML Record:
<?xml version="1.0" encoding="utf-8" ?>
<ccd_feed>
<properties>
<property>
<name> Beautiful Single Family</name>
<address> 123 Main Street</address>
<city> Aventura</city>
<state> FL </state>
<country> USA</country>
<postcode> 33180</postcode>
<latitude> 33.1428640</latitude>
<longitude> -83.228267</longitude>
<price> 519000</price>
<lot_size> 2000</lot_size>
<sq_feet> 1600</sq_feet>
<garage_size> 3 </garage_size>
<no_beds> 3</no_beds>
<no_baths> 2</no_baths>
<no_floors> 1</no_floors>
<year_built> 1998</year_built>
<amenities> Cooling:Central,Pool:outdoor,clubhouse</amenities>
<school_district> Miami-Dade</school_district>
<description>
3 bedroom, 3 bath in Aventura for $519,000.00. This is an amazing property in one of the greatest areas
around. This is a lifestyle of the rich and famous and you will enjoy every minute of it. This area is
very upscale and the views are spectacular! You can see the Ocean, the intracostal and the waterways
leading to it. From every window in this condo you can see water. The community is Aventura Marina.
<description>
<propertytype> Single family </propertytype>
<seller>
<seller_name> John Seller </sellername>
<seller_phone> 8664881163 </sellerphone>
<seller_fax> 8664881164 </sellerfax>
<seller_email> john@sellitfast.com</selleremail>
</seller>
<agent>
<agentname> Happy Realtor </agentname>
<agenturl> http://agentwebsite.com </agenturl>
<agentlogo> http://agentwebsite.com/agentlogo.jpg </agentlogo>
</agent>
<addlurl> http://www.myurl.com/listing/20778622</addlurl>
<listingid> 20778622</listingid>
<photos>
<photo> http://www.myurl.com/photos/photo1.gif </photo>
<photo> http://www.myurl.com/photos/photo2.gif </photo>
</photos>
</property>
</properties>
</ccd_feed>
|