{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're interested in the structure or purpose of a **sitemap.xml** file. In the world of SEO and web development, this file acts as a roadmap for search engines.\n\n---\n\n## What is a sitemap.xml?\nA **Sitemap** is an XML file that lists the URLs of a website. Its primary job is to tell search engine crawlers (like Googlebot) which pages on your site are available for crawling and indexing.\n\n### Why do you need one?\n* **Faster Indexing:** It helps search engines find new or updated pages quickly.\n* **Deep Navigation:** If your site has pages that aren't easily reachable through menus, the sitemap ensures they aren't missed.\n* **Metadata:** It can provide extra context, such as how often a page is updated and its importance relative to other pages.\n\n---\n\n## Typical Structure\nA standard sitemap follows a specific protocol. Here is a simplified breakdown of what the code actually looks like:\n\n| Tag | Description |\n| :--- | :--- |\n| `<urlset>` | The standard container for the file. |\n| `<url>` | The parent tag for each specific page entry. |\n| `<loc>` | The absolute URL of the page (e.g., `https://example.com/page`). |\n| `<lastmod>` | The date the file was last modified (YYYY-MM-DD). |\n| `<changefreq>` | How frequently the page is likely to change (e.g., daily, monthly). |\n| `<priority>` | The importance of the URL relative to others (0.0 to 1.0). |\n\n\n\n---\n\n## Where to find it\nOn most websites, you can find this file by appending `/sitemap.xml` to the root domain. For example:\n> `https://www.google.com/sitemap.xml`\n\n### Common Types of Sitemaps\n1.  **Sitemap Index:** A sitemap that lists other sitemaps (used for very large websites).\n2.  **Image Sitemaps:** To help Google find images that might otherwise be hidden (like those loaded via JavaScript).\n3.  **Video Sitemaps:** Specifically for video content and metadata.\n\n---\n\nAre you looking to generate a sitemap for your own website, or are you trying to troubleshoot why a specific page isn't showing up in search results?"}