{"id":41501,"date":"2009-02-03T14:15:39","date_gmt":"2009-02-03T21:15:39","guid":{"rendered":"https:\/\/redfindevelop.wpengine.com\/blog\/devblog\/2009\/02\/announcing_sitemapgen4j_10.html"},"modified":"2020-10-05T13:12:43","modified_gmt":"2020-10-05T20:12:43","slug":"announcing_sitemapgen4j_10","status":"publish","type":"post","link":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/","title":{"rendered":"Announcing SitemapGen4j 1.0"},"content":{"rendered":"<p>Redfin is happy to announce <a href=\"http:\/\/code.google.com\/p\/sitemapgen4j\/\">SitemapGen4j 1.0<\/a>.  SitemapGen4j is a library to generate XML sitemaps in Java.<\/p>\n<p><a href=\"http:\/\/code.google.com\/p\/sitemapgen4j\/\">Download SitemapGen4j 1.0<\/a><\/p>\n<h2>What&#8217;s an XML sitemap?<\/h2>\n<p>Quoting from <a href=\"http:\/\/sitemaps.org\/index.php\">sitemaps.org<\/a>:<\/p>\n<blockquote>\n<p>Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site.<\/p>\n<p>Web crawlers usually discover pages from links within the site and from other sites. Sitemaps supplement this data to allow crawlers that support Sitemaps to pick up all URLs in the Sitemap and learn about those URLs using the associated metadata. Using the Sitemap protocol does not guarantee that web pages are included in search engines, but provides hints for web crawlers to do a better job of crawling your site.<\/p>\n<p>Sitemap 0.90 is offered under the terms of the Attribution-ShareAlike Creative Commons License and has wide adoption, including support from Google, Yahoo!, and Microsoft.<\/p>\n<\/blockquote>\n<h2>Getting started<\/h2>\n<p>The easiest way to get started is to just use the WebSitemapGenerator class, like this:<\/p>\n<pre class=\"java\">WebSitemapGenerator wsg = new WebSitemapGenerator(\"http:\/\/www.example.com\", myDir);\nwsg.addUrl(\"http:\/\/www.example.com\/index.html\"); \/\/ repeat multiple times\nwsg.write();<\/pre>\n<h2>Configuring options<\/h2>\n<p>But there are a lot of nifty options available for URLs and for the generator as a whole.  To configure the generator, use a builder:<\/p>\n<pre class=\"java\">WebSitemapGenerator wsg = WebSitemapGenerator.builder(\"http:\/\/www.example.com\", myDir)\n    .gzip(true).build(); \/\/ enable gzipped output\nwsg.addUrl(\"http:\/\/www.example.com\/index.html\");\nwsg.write();<\/pre>\n<p>To configure the URLs, construct a WebSitemapUrl with WebSitemapUrl.Options.<\/p>\n<pre class=\"java\">WebSitemapGenerator wsg = new WebSitemapGenerator(\"http:\/\/www.example.com\", myDir);\nWebSitemapUrl url = new WebSitemapUrl.Options(\"http:\/\/www.example.com\/index.html\")\n    .lastMod(new Date()).priority(1.0).changeFreq(ChangeFreq.HOURLY).build();\n\/\/ this will configure the URL with lastmod=now, priority=1.0, changefreq=hourly \nwsg.addUrl(url);\nwsg.write();<\/pre>\n<h2>Configuring the date format<\/h2>\n<p>One important configuration option for the sitemap generator is the date format.  The <a href=\"http:\/\/www.w3.org\/TR\/NOTE-datetime\">W3C datetime standard<\/a> allows you to choose the precision of your datetime (anything from just specifying the year like &#8220;1997&#8221; to specifying the fraction of the second like &#8220;1997-07-16T19:20:30.45+01:00&#8221;); if you don&#8217;t specify one, we&#8217;ll try to guess which one you want, and we&#8217;ll use the default timezone of the local machine, which might not be what you prefer.<\/p>\n<pre class=\"java\">\n\/\/ Use DAY pattern (2009-02-07), Greenwich Mean Time timezone\nW3CDateFormat dateFormat = new W3CDateFormat(Pattern.DAY); \ndateFormat.setTimeZone(TimeZone.getTimeZone(\"GMT\"));\nWebSitemapGenerator wsg = WebSitemapGenerator.builder(\"http:\/\/www.example.com\", myDir)\n    .dateFormat(dateFormat).build(); \/\/ actually use the configured dateFormat\nwsg.addUrl(\"http:\/\/www.example.com\/index.html\");\nwsg.write();<\/pre>\n<h2>Lots of URLs: a sitemap index file<\/h2>\n<p>One sitemap can contain a maximum of 50,000 URLs.  (Some sitemaps, like Google News sitemaps, can contain only 1,000 URLs.) If you need to put more URLs than that in a sitemap, you&#8217;ll have to use a sitemap index file.  Fortunately,  WebSitemapGenerator can manage the whole thing for you. <\/p>\n<pre class=\"java\">WebSitemapGenerator wsg = new WebSitemapGenerator(\"http:\/\/www.example.com\", myDir);\nfor (int i = 0; i &lt; 60000; i++) wsg.addUrl(\"http:\/\/www.example.com\/doc\"+i+\".html\");\nwsg.write();\nwsg.writeSitemapsWithIndex(); \/\/ generate the sitemap_index.xml\n<\/pre>\n<\/p>\n<p>That will generate two sitemaps for 60K URLs: sitemap1.xml (with 50K urls) and sitemap2.xml (with the remaining 10K), and then generate a sitemap_index.xml file describing the two.<\/p>\n<p>It&#8217;s also possible to carefully organize your sub-sitemaps.  For example, it&#8217;s recommended to group URLs with the same changeFreq together (have one sitemap for changeFreq &#8220;daily&#8221; and another for changeFreq &#8220;yearly&#8221;), so you can modify the lastMod of the daily sitemap without modifying the lastMod of the yearly sitemap.  To do that, just construct your sitemaps one at a time using  the WebSitemapGenerator, then use the SitemapIndexGenerator to create a single index for all of them.<\/p>\n<pre class=\"java\">WebSitemapGenerator wsg;\n\/\/ generate foo sitemap\nwsg = WebSitemapGenerator.builder(\"http:\/\/www.example.com\", myDir)\n    .fileNamePrefix(\"foo\").build();\nfor (int i = 0; i &lt; 5; i++) wsg.addUrl(\"http:\/\/www.example.com\/foo\"+i+\".html\");\nwsg.write();\n\/\/ generate bar sitemap\nwsg = WebSitemapGenerator.builder(\"http:\/\/www.example.com\", myDir)\n    .fileNamePrefix(\"bar\").build();\nfor (int i = 0; i &lt; 5; i++) wsg.addUrl(\"http:\/\/www.example.com\/bar\"+i+\".html\");\nwsg.write();\n\/\/ generate sitemap index for foo + bar \nSitemapIndexGenerator sig = new SitemapIndexGenerator(\"http:\/\/www.example.com\", myFile);\nsig.addUrl(\"http:\/\/www.example.com\/foo.xml\");\nsig.addUrl(\"http:\/\/www.example.com\/bar.xml\");\nsig.write();<\/pre>\n<p>You could also use the SitemapIndexGenerator to incorporate sitemaps generated by other tools.  For example, you might use Google&#8217;s official Python sitemap generator to generate some sitemaps, and use WebSitemapGenerator to generate some sitemaps, and use SitemapIndexGenerator to make an index of all of them.<\/p>\n<h2>Validate your sitemaps<\/h2>\n<p>SitemapGen4j can also validate your sitemaps using the official XML Schema Definition (XSD).  If you used SitemapGen4j to make the sitemaps, you shouldn&#8217;t need to do this unless there&#8217;s a bug in our code.  But you can use it to validate sitemaps generated by other tools, and it provides an extra level of safety.<\/p>\n<p>It&#8217;s easy to configure the WebSitemapGenerator to automatically validate your sitemaps right after you write them (but this does slow things down, naturally).<\/p>\n<pre class=\"java\">WebSitemapGenerator wsg = WebSitemapGenerator.builder(\"http:\/\/www.example.com\", myDir)\n    .autoValidate(true).build(); \/\/ validate the sitemap after writing\nwsg.addUrl(\"http:\/\/www.example.com\/index.html\");\nwsg.write();<\/pre>\n<p>You can also use the SitemapValidator directly to manage sitemaps.  It has two methods: validateWebSitemap(File f) and validateSitemapIndex(File f).<\/p>\n<h2>Google-specific sitemaps<\/h2>\n<p>Google can understand a wide variety of custom sitemap formats that they made up, including a Mobile sitemaps, Geo sitemaps, Code sitemaps (for Google Code search), Google News sitemaps, and Video sitemaps.  SitemapGen4j can generate any\/all of these different types of sitemaps.<\/p>\n<p>To generate a special type of sitemap, just use GoogleMobileSitemapGenerator, GoogleGeoSitemapGenerator, GoogleCodeSitemapGenerator, GoogleCodeSitemapGenerator, GoogleNewsSitemapGenerator, or GoogleVideoSitemapGenerator instead of WebSitemapGenerator.<\/p>\n<p>You can&#8217;t mix-and-match regular URLs with Google-specific sitemaps, so you&#8217;ll also have to use a GoogleMobileSitemapUrl, GoogleGeoSitemapUrl, GoogleCodeSitemapUrl, GoogleNewsSitemapUrl, or GoogleVideoSitemapUrl instead of a WebSitemapUrl.  Each of them has unique configurable options not available to regular web URLs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redfin is happy to announce SitemapGen4j 1.0. SitemapGen4j is a library to generate XML sitemaps in Java. Download SitemapGen4j 1.0 What&#8217;s an XML sitemap? Quoting from sitemaps.org: Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is [&hellip;]<\/p>\n","protected":false},"author":13152,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[57],"tags":[],"dashboard":[],"coauthors":[],"class_list":["post-41501","post","type-post","status-publish","format-standard","hentry","category-company-news"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.7 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Announcing SitemapGen4j 1.0 - Redfin Real Estate News<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Announcing SitemapGen4j 1.0\" \/>\n<meta property=\"og:description\" content=\"Redfin is happy to announce SitemapGen4j 1.0. SitemapGen4j is a library to generate XML sitemaps in Java. Download SitemapGen4j 1.0 What&#8217;s an XML sitemap? Quoting from sitemaps.org: Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/\" \/>\n<meta property=\"og:site_name\" content=\"Redfin Real Estate News\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/redfin\" \/>\n<meta property=\"article:published_time\" content=\"2009-02-03T21:15:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-05T20:12:43+00:00\" \/>\n<meta name=\"author\" content=\"Dan Fabulich\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@redfin\" \/>\n<meta name=\"twitter:site\" content=\"@redfin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dan Fabulich\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/\"},\"author\":{\"name\":\"Dan Fabulich\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#\\\/schema\\\/person\\\/6d6535d7d227b820f449877e0081154f\"},\"headline\":\"Announcing SitemapGen4j 1.0\",\"datePublished\":\"2009-02-03T21:15:39+00:00\",\"dateModified\":\"2020-10-05T20:12:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/\"},\"wordCount\":759,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#organization\"},\"articleSection\":[\"Company News\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/#respond\"]}],\"copyrightYear\":\"2009\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/\",\"url\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/\",\"name\":\"Announcing SitemapGen4j 1.0 - Redfin Real Estate News\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#website\"},\"datePublished\":\"2009-02-03T21:15:39+00:00\",\"dateModified\":\"2020-10-05T20:12:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/announcing_sitemapgen4j_10\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.redfin.com/news\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Announcing SitemapGen4j 1.0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#website\",\"url\":\"https:\\\/\\\/www.redfin.com/news\\\/\",\"name\":\"Redfin Real Estate News\",\"description\":\"The latest real estate news and research from technology-powered residential real estate company, Redfin.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.redfin.com/news\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#organization\",\"name\":\"Redfin\",\"url\":\"https:\\\/\\\/www.redfin.com/news\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.redfin.com\\\/news\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Redfin-News-Logo.png\",\"contentUrl\":\"https:\\\/\\\/www.redfin.com\\\/news\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Redfin-News-Logo.png\",\"width\":1100,\"height\":235,\"caption\":\"Redfin\"},\"image\":{\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/redfin\",\"https:\\\/\\\/x.com\\\/redfin\",\"https:\\\/\\\/www.instagram.com\\\/redfinrealestate\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/redfin\",\"https:\\\/\\\/www.pinterest.com\\\/redfin\\\/\",\"https:\\\/\\\/en.wikipedia.org\\\/wiki\\\/Redfin\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.redfin.com/news\\\/#\\\/schema\\\/person\\\/6d6535d7d227b820f449877e0081154f\",\"name\":\"Dan Fabulich\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g54c6285ff27705cd6a598da01a9516ab\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g\",\"caption\":\"Dan Fabulich\"},\"url\":\"https:\\\/\\\/www.redfin.com/news\\\/author\\\/dan-fabulichredfin-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Announcing SitemapGen4j 1.0 - Redfin Real Estate News","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/","og_locale":"en_US","og_type":"article","og_title":"Announcing SitemapGen4j 1.0","og_description":"Redfin is happy to announce SitemapGen4j 1.0. SitemapGen4j is a library to generate XML sitemaps in Java. Download SitemapGen4j 1.0 What&#8217;s an XML sitemap? Quoting from sitemaps.org: Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is [&hellip;]","og_url":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/","og_site_name":"Redfin Real Estate News","article_publisher":"https:\/\/www.facebook.com\/redfin","article_published_time":"2009-02-03T21:15:39+00:00","article_modified_time":"2020-10-05T20:12:43+00:00","author":"Dan Fabulich","twitter_card":"summary_large_image","twitter_creator":"@redfin","twitter_site":"@redfin","twitter_misc":{"Written by":"Dan Fabulich","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/#article","isPartOf":{"@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/"},"author":{"name":"Dan Fabulich","@id":"https:\/\/www.redfin.com\/news\/#\/schema\/person\/6d6535d7d227b820f449877e0081154f"},"headline":"Announcing SitemapGen4j 1.0","datePublished":"2009-02-03T21:15:39+00:00","dateModified":"2020-10-05T20:12:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/"},"wordCount":759,"commentCount":0,"publisher":{"@id":"https:\/\/www.redfin.com\/news\/#organization"},"articleSection":["Company News"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/#respond"]}],"copyrightYear":"2009","copyrightHolder":{"@id":"https:\/\/www.redfin.com\/news\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/","url":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/","name":"Announcing SitemapGen4j 1.0 - Redfin Real Estate News","isPartOf":{"@id":"https:\/\/www.redfin.com\/news\/#website"},"datePublished":"2009-02-03T21:15:39+00:00","dateModified":"2020-10-05T20:12:43+00:00","breadcrumb":{"@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.redfin.com\/news\/announcing_sitemapgen4j_10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.redfin.com\/news\/"},{"@type":"ListItem","position":2,"name":"Announcing SitemapGen4j 1.0"}]},{"@type":"WebSite","@id":"https:\/\/www.redfin.com\/news\/#website","url":"https:\/\/www.redfin.com\/news\/","name":"Redfin Real Estate News","description":"The latest real estate news and research from technology-powered residential real estate company, Redfin.","publisher":{"@id":"https:\/\/www.redfin.com\/news\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.redfin.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.redfin.com\/news\/#organization","name":"Redfin","url":"https:\/\/www.redfin.com\/news\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.redfin.com\/news\/#\/schema\/logo\/image\/","url":"https:\/\/www.redfin.com\/news\/wp-content\/uploads\/2020\/10\/Redfin-News-Logo.png","contentUrl":"https:\/\/www.redfin.com\/news\/wp-content\/uploads\/2020\/10\/Redfin-News-Logo.png","width":1100,"height":235,"caption":"Redfin"},"image":{"@id":"https:\/\/www.redfin.com\/news\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/redfin","https:\/\/x.com\/redfin","https:\/\/www.instagram.com\/redfinrealestate\/","https:\/\/www.linkedin.com\/company\/redfin","https:\/\/www.pinterest.com\/redfin\/","https:\/\/en.wikipedia.org\/wiki\/Redfin"]},{"@type":"Person","@id":"https:\/\/www.redfin.com\/news\/#\/schema\/person\/6d6535d7d227b820f449877e0081154f","name":"Dan Fabulich","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g54c6285ff27705cd6a598da01a9516ab","url":"https:\/\/secure.gravatar.com\/avatar\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/75c9d9830e7679a354962b0e5a761bd7d542e3ef7b9398657b38ba265a6a1903?s=96&d=wp_user_avatar&r=g","caption":"Dan Fabulich"},"url":"https:\/\/www.redfin.com\/news\/author\/dan-fabulichredfin-com\/"}]}},"_links":{"self":[{"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/posts\/41501","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/users\/13152"}],"replies":[{"embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/comments?post=41501"}],"version-history":[{"count":0,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/posts\/41501\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/media?parent=41501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/categories?post=41501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/tags?post=41501"},{"taxonomy":"dashboard","embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/dashboard?post=41501"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.redfin.com\/news\/wp-json\/wp\/v2\/coauthors?post=41501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}