<?xml version="1.0" encoding="UTF-8"?>
<!--
  Century 21 Global — sample REAXML feed (2 listings: 1 sale, 1 rental).
  REAXML carries no currency, so supply one out-of-band:

    curl -X POST "$API_BASE/v1/validate?currency=AUD&country=AU&locale=en-AU" \
      -H "content-type: application/xml" --data-binary @reaxml-feed.xml

  Then push for real (same body) with your key:

    curl -X POST "$API_BASE/v1/feeds?currency=AUD&country=AU&locale=en-AU" \
      -H "content-type: application/xml" -H "Authorization: Bearer $FEED_KEY" \
      --data-binary @reaxml-feed.xml
-->
<propertyList>
  <residential modTime="2026-08-01-10:00:00" status="current">
    <agentID>AU-DEMO-01</agentID>
    <uniqueID>DEMO-0001</uniqueID>
    <price display="yes">1850000</price>
    <listingAgent id="1">
      <name>Sarah Mitchell</name>
      <email>sarah.mitchell@example.com</email>
      <telephone type="mobile">0412 345 678</telephone>
    </listingAgent>
    <address display="yes">
      <streetNumber>42</streetNumber>
      <street>Ocean View Parade</street>
      <suburb>Bondi Beach</suburb>
      <state>NSW</state>
      <postcode>2026</postcode>
      <country>AUS</country>
    </address>
    <category name="House"/>
    <headline>Sunlit family home moments from the sand</headline>
    <description>Four bedrooms, two living areas and a north-facing entertainer's deck — a rare beachside offering with district views.</description>
    <features>
      <bedrooms>4</bedrooms>
      <bathrooms>2</bathrooms>
      <garages>2</garages>
    </features>
    <landDetails><area unit="squareMeter">560</area></landDetails>
    <objects>
      <img id="m" url="https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1200&amp;q=80" format="jpg"/>
      <img id="a" url="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&amp;q=80" format="jpg"/>
    </objects>
  </residential>
  <rental modTime="2026-08-01-10:05:00" status="current">
    <agentID>AU-DEMO-01</agentID>
    <uniqueID>DEMO-0002</uniqueID>
    <rent period="week" display="yes">1200</rent>
    <listingAgent id="1">
      <name>James Chen</name>
      <email>james.chen@example.com</email>
      <telephone type="mobile">0423 456 789</telephone>
    </listingAgent>
    <address display="yes">
      <streetNumber>7</streetNumber>
      <street>Harbour Lane</street>
      <suburb>Kirribilli</suburb>
      <state>NSW</state>
      <postcode>2061</postcode>
      <country>AUS</country>
    </address>
    <category name="Apartment"/>
    <headline>Designer two-bedroom with bridge views</headline>
    <description>Floor-to-ceiling glass frames the harbour from every room. Two bedrooms, study nook, secure parking.</description>
    <features>
      <bedrooms>2</bedrooms>
      <bathrooms>2</bathrooms>
      <garages>1</garages>
    </features>
    <objects>
      <img id="m" url="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1200&amp;q=80" format="jpg"/>
    </objects>
  </rental>
</propertyList>
