<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
                        xmlns="http://mediamart.com/products"
                        targetNamespace="http://mediamart.com/products"
                        xmlns:mus="http://mediamart.com/music"
                        xmlns:mov="http://mediamart.com/movies"
                        xmlns:bok="http://mediamart.com/books">

<xs:element name="mediaProducts">

        <xs:import namespace="http://mediamart.com/music"
                schemaLocation="music.xsd" />
        <xs:import namespace="http://mediamart.com/books"
                schemaLocation="books.xsd" />
        <xs:import namespace="http://mediamart.com/movies"
                schemaLocation="movies.xsd" />

</xs:element>                
</xs:schema>
