[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: generate common xml shema from multiple xml instances

  • From: rjelliffe@allette.com.au
  • To: xml-dev@lists.xml.org
  • Date: Wed, 17 Jun 2009 21:44:45 +1000 (EST)

RE:  generate common xml shema from multiple xml instances

> From: Rita Shen [mailto:shaledova@gmail.com]

> Hi,
>
> How can I generate a common XML schema for multiple xml instances??
> I know many tools can generate an XSD from a single XML instance.
> But in my case, I want to get the unknown common XSD for a bunch of XML
> instances.

Probably not what you want, but it is pretty easy to generate a "usage
schema" for Schematron.

You

  1) extract every simple XPath in all the documents, one per line, eg
       /book
       /book/section
       /book/section/heading
  2) run this through sort -ur     (if you are not running in UNIX, you can
    download the free GNU utility)  to get a reverse unique sort of the
lines.
  3) for each line, generate a Schematron rule with the line as the
context and an  <assert context="true()" /> assertion and a fallthrough
case. Eg

<pattern>
   <rule context="">
     <assert test="/book/section/heading" />
     <assert test="/book/section" />
     <assert test="/book" />
     <assert test="*" />Only the elements in the test documents can be
    used.</assert>
   </rule>
</pattern>

There are other varieties of things you could test. For example just each
element with no ancestor paths, or just parent/child pairs.

Cheers
Rick Jelliffe


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.