<?xml version="1.0" encoding="UTF-8"?>
<!--
  A sitemap INDEX, not a list of pages — one URL covering both the marketing
  pages and all of the documentation.

  Search Console and Bing have https://data-conductor.com/sitemap-index.xml
  submitted. Both this file and sitemap-index.xml are deployed with identical
  content: /sitemap.xml is what crawlers probe by convention, and the -index
  name is what was submitted, so both need to keep resolving.

  A PREVIOUS VERSION OF THIS COMMENT WAS WRONG. It claimed Cloudflare
  intercepted the literal path /sitemap.xml, because that path returned 404
  through the CDN while the GCS origin served the same object with a 200. The
  real cause was a STALE CACHED 404: before any sitemap existed the path
  legitimately 404'd, and GCS stamps public objects with
  `Cache-Control: public, max-age=3600`, so the edge kept serving that miss for
  an hour after the file was uploaded. A query-string cache-buster did not help
  because query strings are not part of the cache key here. sitemap-index.xml
  looked like a "workaround" only because that path had never been requested,
  so there was nothing stale to serve.

  Probing settled it: /nonexistent-abc.xml returns the same 7730-byte 404 body
  as /SITEMAP.XML and /sitemap.xml/ did, so nothing is treating this filename
  specially. There is no Cloudflare rule and no bucket rule to hunt.

  deploy.sh now sets max-age=300 on markup and sitemaps, which is the actual
  fix — the same stale-cache behaviour also made index.html serve its old
  <title> and coming-soon.html serve without its noindex after deploying.

  robots.txt still cannot carry the usual `Sitemap:` line: the live one is
  synthesised by Cloudflare (content-signal comments, no directives) and is not
  served from this bucket. That part was correct.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://data-conductor.com/sitemap-pages.xml</loc>
    <lastmod>2026-09-17</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://data-conductor.com/docs/sitemap.xml</loc>
    <lastmod>2026-09-17</lastmod>
  </sitemap>
</sitemapindex>
