XSD (XML Schema) is defines the structure of the XML. When data is shared in form of XML, interface agreement document(XSD) is required. . This XSD needs to be validated with an XML. This online tool (XSD validator) is used to validate XSD. If there is any incorrect XSD structure, it throws exception. It validte the structure and datatype of the XML . This XSD validator is very easy to use. Just provide XSD and one XML in the input. Output will be true if validation passed, otherwise false..
How It Works:
First it analyze both the XML and XSD file content. Parse both XML and XSD through JAXB parser.
Then apply the XSD on the XML, If it fails it return false. Otherwise it return true
Pre Conditions:
- Both XML and XSD needs to be well formed
Steps To Execute:
- Add first XML content in the first text area.
- Add 2nd XSD content in the 2nd text area.
- Click on the Validate button