If I am correct, you are attempting to validate your XML Schema against the Schema for Schemas.
The target namespace must be that of XML Schema, i.e., the same as the namespace bound to the prefix xs:, and the location of the file containing the Schema for Schemas can be specified with the attribute xsi:schemaLocation.
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
targetNamespace="https://www.w3.org/2001/XMLSchema"
xsi:schemaLocation="https://www.w3.org/2001/XMLSchema
https://www.w3.org/2009/XMLSchema/XMLSchema.xsd">
More generally, the xsi:schemaLocation attribute contains an even number of space-separated URIs. Each URI at an odd position is a namespace, and the URI at the next even position is its location hint.
Note that there a high chance, but no 100% guarantee that this works, because the XML Schema specification defines the information in xsi:schemaLocation as a hint that the schema validation engine may or may not follow to resolve its schema. A validation engine is free to provide a different way to resolve schema file locations, which should then be documented. Having said that, if an engine does not have a schema in its cache, it is very likely that it will use the hint provided with xsi:schemaLocation as this is widely established practice.
In general, validation engines are encouraged to cache schemas (either builtin or one-time-download), as schema locations pointed to a central server by a worldwide user base can put a significant load on the servers, especially for the W3C. Having the schema locally also diminishes the latency. If the engine does not cache and the validation is run often, a possibility is to download the Schemas for Schemas and use it locally.
Finally, an XML Schema engine will normally automatically validate and check schemas when used, not only against the Schemas for Schemas but also considering all further constraints in the specification. If such is the case, all of the above happens automatically without the need to specify the schema location inside a schema. Doing so explicitly is a nice intellectual exercise, though.