Reputation: 169
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
Reputation: 1380
Try xsd command better explained at XML Schema Definition Tool (Xsd.exe)
Upvotes: 2
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