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

RE: Micro XSD for Micro XML?

  • From: "David Lee" <dlee@calldei.com>
  • To: "'Kurt Cagle'" <kurt.cagle@gmail.com>, "'Michael Kay'" <mike@s...>
  • Date: Fri, 17 Dec 2010 16:04:42 -0500

RE:  Micro XSD for Micro XML?

So which is more confusing

A concise regex based expression which looks more arcane then perl ?

Or a bloated-down heavy-handed overly designed complicated language in XML which if your lucky GUI app tools can comprehend but no mortals.

 

 

 

----------------------------------------

David A. Lee

dlee@calldei.com

http://www.xmlsh.org

 

From: Kurt Cagle [mailto:kurt.cagle@g...]
Sent: Friday, December 17, 2010 3:18 PM
To: Michael Kay
Cc: xml-dev@l...
Subject: Re: Micro XSD for Micro XML?

 

alternatives would be indicated via the pipe character: "|"

 

    ISBNSet ?

          ^ISBN +

    ^priceUS |^priceUK

 

I'm trying to write this while debugging some XSD code for use in JAXB, so I apologize for the sporadic corrections. I should concentrate on my XSDs (bleeurgh).


Kurt Cagle
XML Architect
Lockheed / US National Archives ERA Project


On Fri, Dec 17, 2010 at 2:38 PM, Kurt Cagle <kurt.cagle@g...> wrote:

Let's try that again:

 

&descript: string

ISBN: /\d{13}/

priceUS: /\$\d+\.d{2}/

priceUK: /£\d+\.d{2}/

 

book

    @category:enumeration ?

    title:string

    author:string

    description:descript ?

    ISBNSet ?

          ^ISBN +

    ^priceUS 

 

books

    ^book *

 

where

/../ indicates a regular expression

? indicates an optional element

+ indicates 1 or more items

* indicates 0 or more items

^ is a reference to a previously defined element.

& is a complex type

a:b indicates that element a is of type b

 

Similar notation could handle groups

 

Kurt Cagle
XML Architect
Lockheed / US National Archives ERA Project


On Fri, Dec 17, 2010 at 2:01 PM, Kurt Cagle <kurt.cagle@g...> wrote:

You can also use a shorthand notation:

 

<book category="enumeration('children','adult','unknown') [0..1]">

<title> string() </title>

<description> string() [0..1] </description>

<author> string() </author>

<ISBNSet> [0..1]

     <ISBN> numeric(8,15) [1..*] </IBSN>

</IBSN>
<price> decimal(4,2) </price>

</book>

 

<bookSet> [0..1]

      <book> ref [1..*] </book>

</bookSet>

 

or even use a compact notation:

 

description:string

ISBN: /\d{13}/

 

book

    @category:enumeration ?

    title:string

    author:string

    description:description ?

    ISBNSet ?

          ^ISBN

    price:decimal(4,2) 

 

(Getting close to RNC, admittedly)


Kurt Cagle
XML Architect
Lockheed / US National Archives ERA Project




On Fri, Dec 17, 2010 at 12:23 PM, Michael Kay <mike@s...> wrote:

On 17/12/2010 14:33, Pete Cordell wrote:

I recently put together a schema language for newbies that aims to be simple.  The idea was that an example of your XML data could be your schema. Chances are that alone wouldn't be rich enough, so you can then add annotations to it to better describe what you want.  For that reason I've called it "Annotated XML Example" or AXE.

 

Vaclav Trojan has a similar schema-by-annotated-example specification in the form of XDefinition:

see http://www.syntea.cz/xdweb/userdoc/XMLPrague2009_en.pdf

<book category="optional enumeration('children','adult','unknown')">
<title> required string() </title>
<author> required string() </author>
<IBSN> optional numeric(8,15) </IBSN>
<price> required decimal(4,2) </price>
</book>

Michael Kay
Saxonica



_______________________________________________________________________

XML-DEV is a publicly archived, unmoderated list hosted by OASIS
to support XML implementation and development. To minimize
spam in the archives, you must subscribe before posting.

[Un]Subscribe/change address: http://www.oasis-open.org/mlmanage/
Or unsubscribe: xml-dev-unsubscribe@l...
subscribe: xml-dev-subscribe@l...
List archive: http://lists.xml.org/archives/xml-dev/
List Guidelines: http://www.oasis-open.org/maillists/guidelines.php

 

 

 



[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.