A sitemap.xml file is a document that lists all the pages of a website that should be indexed by search engines. This file helps search engines crawl and index a website’s pages more efficiently. It typically includes URLs, metadata, and other important information about each page on the website. 

Here is an example of what a sitemap.xml file might look like:

```xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>https://www.example.com/page1</loc>
      <lastmod>2022-01-01</lastmod>
      <priority>1.0</priority>
   </url>
   <url>
      <loc>https://www.example.com/page2</loc>
      <lastmod>2022-01-02</lastmod>
      <priority>0.8</priority>
   </url>
</urlset>
```

In this example, there are two URLs listed in the sitemap.xml file: "https://www.example.com/page1" and "https://www.example.com/page2". Each URL includes the location, last modified date, and priority information. This file helps search engines understand the structure of the website and index its pages effectively.