Ejercicio de XSD - Validar un sitemap XML
Dado el siguiente "sitemap.xml":
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.ejemplos-de-abrirllave.com/</loc>
<lastmod>2016-09-30</lastmod>
<priority>0.8</priority>
</url>
<url>
<loc>http://www.ejemplos-de-abrirllave.com/contactar.html</loc>
<lastmod>2016-09-30</lastmod>
<priority>0.3</priority>
</url>
<url>
<loc>http://www.ejemplos-de-abrirllave.com/productos/impresora.html</loc>
<lastmod>2016-09-30</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>http://www.ejemplos-de-abrirllave.com/productos/monitor.html</loc>
<lastmod>2016-09-30</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>http://www.ejemplos-de-abrirllave.com/productos/teclado.html</loc>
<lastmod>2016-09-30</lastmod>
<priority>0.5</priority>
</url>
</urlset>
Comprobar con un validador online de sitemaps XML que es válido.