Tim
Tim

Reputation: 169

How do I build an .xsd file from xml?

Is there a way to generate an xsd from an xml file? Are there any class files that do this? I don't mind if the solution is c# or java.

I would like to do this in code, but if there are any good free tools that would be ok too.

Thanks

Upvotes: 2

Views: 3765

Answers (2)

Nasmi Sabeer
Nasmi Sabeer

Reputation: 1380

Try xsd command better explained at XML Schema Definition Tool (Xsd.exe)

Upvotes: 2

Anton Gogolev
Anton Gogolev

Reputation: 115857

xsd.exe can do what you want:

If you specify an XML file (.xml extension), Xsd.exe infers a schema from the data in the file and produces an XSD schema. The output file has the same name as the XML file, but with the .xsd extension.

Upvotes: 3

Related Questions