This is an example of what our staff adds to all Sierra Interactive About pages focusing on all Agents and optimizing for AREA Realtor key words.   After editing and placing the code in content area (at the bottom of the page) you should ALWAYS validate your Schema by going here - https://validator.schema.org/


This is the empty Schema Script that we use make sure not to delete the "  when you are removing the PLACEHOLDER data:


<p>
<script type="application/ld+json">// <![CDATA[
{
  "@context": "https://schema.org/",
  "@type": "RealEstateAgent",
  "name": "PLACEHOLDER_FOR_COMPANY_NAME",
  "url": "PLACEHOLDER_FOR_WEBSITE_URL",
  "logo": "PLACEHOLDER_FOR_LOGO_URL",
  "image": "PLACEHOLDER_FOR_IMAGE_URL",
  "description": "PLACEHOLDER_FOR_COMPANY_DESCRIPTION",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "PLACEHOLDER_FOR_STREET_ADDRESS",
    "addressLocality": "PLACEHOLDER_FOR_CITY",
    "addressRegion": "PLACEHOLDER_FOR_STATE",
    "postalCode": "PLACEHOLDER_FOR_POSTAL_CODE"
  },
  "telephone": "PLACEHOLDER_FOR_TELEPHONE_NUMBER",
  "areaServed": ["LIST_OF_CITIES_SERVED"],
  "serviceArea": {
    "@type": "GeoCircle",
    "geoMidpoint": {
      "@type": "GeoCoordinates",
      "latitude": "PLACEHOLDER_FOR_LATITUDE",
      "longitude": "PLACEHOLDER_FOR_LONGITUDE"
    },
    "geoRadius": "PLACEHOLDER_FOR_RADIUS_IN_KILOMETERS_OR_MILES"
  },
  "hasOfferCatalog": {
    "@type": "OfferCatalog",
    "name": "Real Estate Services",
    "itemListElement": [
      {
        "@type": "Offer",
        "itemOffered": {
          "@type": "Service",
          "name": "SPECIFIC_SERVICE_NAME"
        }
      }
      // ADD MORE OFFERS AS NEEDED
    ]
  },
  "knowsAbout": ["LIST_OF_KNOWLEDGE_AREAS"],
  "employee": [
    {
      "@type": "Person",
      "name": "EMPLOYEE_NAME",
      "jobTitle": "EMPLOYEE_JOB_TITLE"
    }
    // ADD MORE EMPLOYEES AS NEEDED
  ],
  "keywords": "LIST_OF_RELEVANT_KEYWORDS_SEPARATED_BY_COMMA",
  "sameAs": [
    "LIST_OF_SOCIAL_MEDIA_OR_OTHER_PROFILE_URLS"
  ]
}
// ]]></script>
</p>


Here is an example of the working code:


<p>
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "RealEstateAgent",
  "name": "Rob Abercrombie - The Abercrombie Group- Capstone Realty",
  "image": "https://cdn.sitephotos.sierrastatic.com/1091_logo_tag-logo-files-01-1--20220913084432.png",
  "telephone": "(256) 652-9500",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "3414 Governors Dr SW Suite 150",
    "addressLocality": "Huntsville",
    "addressRegion": "AL",
    "postalCode": "35805",
    "addressCountry": "USA"
  },
  "url": "https://www.relocatetohuntsville.com",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday"
      ],
      "opens": "08:00",
      "closes": "21:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Saturday",
      "opens": "08:00",
      "closes": "20:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": "Sunday",
      "opens": "11:00",
      "closes": "20:00"
    }
  ],
  "sameAs": [
    "https://www.facebook.com/theabercrombiegroupcapstone",
    "https://www.instagram.com/theabercrombiegroup/?hl=en",
    "https://www.linkedin.com/in/theabercrombiegroup",
    "https://www.youtube.com/channel/UCvLKRrmFT_HXKHIUHdYbEwQ"
  ],
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "5.0",
    "reviewCount": "Number of reviews here"
  },
  "description": "As a leading Huntsville Realtor with over 19 years of experience, Rob Abercrombie and The Abercrombie Group are at the forefront of the Huntsville real estate market. Specializing in services for clients relocating to Huntsville and Madison areas, they bring unparalleled market knowledge to buyers, sellers, and investors. Ranked in the top 1% of Huntsville Real Estate agents, Rob combines his marketing degree and counseling expertise to assist clients in making informed decisions. Discover the difference of working with a top-rated Huntsville Realtor committed to excellence.",
  "hasOfferCatalog": {
    "@type": "OfferCatalog",
    "name": "Real Estate Services",
    "url": "https://www.relocatetohuntsville.com/about/",
    "itemListElement": [
      {
        "@type": "Offer",
        "itemOffered": {
          "@type": "Service",
          "name": "Huntsville Realtor",
          "description": "Expert realtor services tailored to the unique market of Huntsville, providing clients with unparalleled guidance in buying and selling properties."
        }
      },
      {
        "@type": "Offer",
        "itemOffered": {
          "@type": "Service",
          "name": "Huntsville Real Estate Agent",
          "description": "Professional real estate agent services focusing on the Huntsville area, dedicated to offering clients the best investment opportunities and housing solutions."
        }
      }
    ]
  },
  "keywords": "Huntsville Realtors, Huntsville Real Estate agents"
}
</script>
</p>