{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're trying to access or discuss a **sitemap.xml** file. \n\nIf you are looking for a sitemap for a specific website, you'll need to append that path to the site's root URL (e.g., `https://example.com/sitemap.xml`). If you're asking about what they are or how to build one, here’s a quick breakdown:\n\n### What is a Sitemap?\nA sitemap is essentially a **roadmap** for search engines (like Google or Bing). It lists the URLs of a website so that web crawlers can find and index your content more efficiently.\n\n### Key Components\nA standard XML sitemap typically includes:\n* **`<loc>`**: The specific URL of the page.\n* **`<lastmod>`**: The date the page was last updated.\n* **`<changefreq>`**: How often the page is likely to change (e.g., daily, monthly).\n* **`<priority>`**: The importance of the page relative to others on the site (though many modern crawlers ignore this).\n\n### A Simple Example\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://www.example.com/</loc>\n    <lastmod>2026-04-15</lastmod>\n    <changefreq>monthly</changefreq>\n    <priority>1.0</priority>\n  </url>\n</urlset>\n```\n\n---\n\n**Are you trying to generate a sitemap for a site you're building, or are you troubleshooting why one isn't being indexed?**"}