The main source can be found in http://www.xml.com/lpt/a/691
Dependent on using namespaces, the link will be either:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="file:library.xsd">
Or, as below (noting the syntax with a URI for the namespace and the URI of the schema, separated by whitespace in the same attribute):
Note that the "file:" has no triple slashxmlns="http://example.org/ns/books/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://example.org/ns/books/ file:library.xsd">