<?xml version="1.0"?>
<!--<!DOCTYPE xs:schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "XMLSchema.dtd">-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns="http://sobekrepository.org/schemas/sobekcm_sitemap/" targetNamespace="http://sobekrepository.org/schemas/sobekcm_sitemap/" elementFormDefault="qualified" attributeFormDefault="unqualified" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd" version="1.0">


	<xs:annotation>
        <xs:documentation>This schema is essentially a variation of the Microsoft ASP.net sitemap schema</xs:documentation>
    </xs:annotation>

    <xs:complexType name="siteMapNodeType">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element name="siteMapNode" type="siteMapNodeType" />
        </xs:choice>
        <xs:attributeGroup ref="urlNodeAttributes" />
    </xs:complexType>

    <xs:complexType name="siteMapType">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element name="siteMapNode" type="siteMapNodeType"/>
        </xs:choice>
		<xs:attribute name="default_breadcrumb" type="xs:string" />
		<xs:attribute name="width" type="xs:int" />
		<xs:attribute name="restrictedRobotUrl" type="xs:string" />
    </xs:complexType>

    <xs:element name="siteMap" type="siteMapType" />

    <xs:attributeGroup name="urlNodeAttributes">
        <xs:attribute name="url" type="xs:anyURI" />
        <xs:attribute name="title" type="xs:string" />
        <xs:attribute name="description" type="xs:string" />
    </xs:attributeGroup>

</xs:schema>