Creating XML Schema from Perl Hash?

We use one huge Perl Hash throughout our application to store all the details. We use the data in this hash to write to XML documents in the database. Is it possible to create any XML schema from this hash to validate all documents in the database? Is there a Perl module that does something like this?

Thank,

+1
source share
1 answer

Kwalify and Rx are a language / validator schema for data structures (Perl).

A related useful dpath tool for accessing elements in data structures with a similar XPath .

+2
source

All Articles