In Notepad++ go to
Plugins > Plugin manager > Show Plugin Managerthen findXml Toolsplugin. Tick the box and clickInstall
Open XML document you want to validate and click Ctrl+Shift+Alt+M (Or use Menu if this is your preference
Plugins > XML Tools > Validate Now).
Following dialog will open:
Click on
.... Point to XSD file and I am pretty sure you'll be able to handle things from here.
Hope this saves you some time.
EDIT:
Plugin manager was not included in some versions of Notepad++ because many users didn't like commercials that it used to show. If you want to keep an older version, however still want plugin manager, you can get it on github, and install it by extracting the archive and copying contents to plugins and updates folder.
In version 7.7.1 plugin manager is back under a different guise... Plugin Admin so now you can simply update notepad++ and have it back.

Videos
In Notepad++ go to
Plugins > Plugin manager > Show Plugin Managerthen findXml Toolsplugin. Tick the box and clickInstall
Open XML document you want to validate and click Ctrl+Shift+Alt+M (Or use Menu if this is your preference
Plugins > XML Tools > Validate Now).
Following dialog will open:
Click on
.... Point to XSD file and I am pretty sure you'll be able to handle things from here.
Hope this saves you some time.
EDIT:
Plugin manager was not included in some versions of Notepad++ because many users didn't like commercials that it used to show. If you want to keep an older version, however still want plugin manager, you can get it on github, and install it by extracting the archive and copying contents to plugins and updates folder.
In version 7.7.1 plugin manager is back under a different guise... Plugin Admin so now you can simply update notepad++ and have it back.

First, open your notepad++. Go to Plugins -> XML Tools. Uncheck the Enable auto-validation.
I have written a number of xsd to validate an xml -- most solution came from this site. I've focused more on using xmllint!
xmllint -schema <your xsd file> <your xml file>
HTH
You simply have to put the xsi:noNamespaceSchemaLocation attribute into your root tag pointing to your local xsd file:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2020.2"
xsi:noNamespaceSchemaLocation="your-schema.xsd">
<....>
....
</data>