Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Validate an XSD Schema?

I'm writing an XML schema (an XSD) to describe the format our partners should send us data in.

And I'm having a hard time finding a tool that can validate the XSD schema file that I have written.

The best way I have found so far is to first write an example input XML file and then try to validate that with the XSD. But that doesn't feel like a best practice maneuver.

So, how should I validate an XML schema?

like image 236
Alexander Kjäll Avatar asked Jul 29 '09 12:07

Alexander Kjäll


1 Answers

The W3C has a online validator for XML Schemas at http://www.w3.org/2001/03/webdata/xsv. Since W3C is the source of the XML Schema spec, their validator should be trustworthy.

like image 152
Matt Lavin Avatar answered Sep 29 '22 09:09

Matt Lavin