XML Schema XML Tutorial

To connect the two documents, you include a reference to the XML Schema within your instance document. 
You begin XML schema with the XML declaration, .
The root element within your XML Schema is the  element.
Within the  element, you have the namespace declaration.
The namespace of the  element is http://www.w3.org/2001/XMLSchema.
targetNamespace attribute indicates that the vocabulary is for the namespace http://www.rntsoft.com/name. 
You can declare a namespace that matches your targetNamespace with the prefix target to refer to any declarations within your XML Schema. 
The attribute elementFormDefault controls the way namespaces are used within your corresponding XML document. 

        xmlns:target="http://www.rntsoft.com/name" 
        targetNamespace="http://www.rntsoft.com/name" 
        elementFormDefault="qualified">