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

Schema for mixed content to provide backwards compatibility for an element with changing

From: William S Fulton <wsf@fultondesigns.co.uk>
Date: Thu, 30 Aug 2007 21:43:32 +0100
Message-ID: <46D72BF4.1030904@fultondesigns.co.uk>
To: xmlschema-dev@w3.org
Schema for mixed content to provide backwards compatibility for an  element with changing

I'd like to upgrade our usage of XML dates to use the XML date type and 
be able to validate both the old and new xml elements. An example of our 
current xml date element looks like:

<date>
   <day>1</day>
   <month>2</month>
   <year>2000</year>
</date>

The desired change to use the xs:date type would look like:

<date>2000-02-01</date>

Is it possible to create a schema which will fully validate both 
versions of the date element? I've been experimenting and googling for 
some while now and cannot find a solution to getting a suitable schema. 
I'd like to avoid changing the name of the element from "date". The 
following mixed content will validate both, but it will validate any 
text instead of the XML date type, which isn't very good:

<xs:complexType name="DateType" mixed="true">
   <xs:sequence maxOccurs="1" minOccurs="0">
     <xs:element name="day" type="integer" />
     <xs:element name="month" type="integer" />
     <xs:element name="year" type="integer" />
   </xs:sequence>
</xs:complexType>

William
Received on Friday, 31 August 2007 11:40:59 GMT

Subscribe to the Stylus Scoop newsletter for helpful XML tips and tutorials.
Email
First Name
Last Name
Company

Download Stylus Studio 6 XML Enterprise Edition

Subscribe in XML format
RSS 2.0
Atom 0.3
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-2007 All Rights Reserved.