Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Extensible Enumerations Technique

From: Guillaume Lebleu <gl@---------.--->
To: xmlschema-dev@--.---
Date: 3/11/2008 3:11:00 AM
I know techniques for extensible enumerations in W3C XML Schema 1.0 have 
been discussed on this list before (extensively), but I didn't find the 
exact technique below, so I thought I'd post it here to get 
feedback/comment.

Enumeration types (say, Enumerated_Type) are defined as xs:union between 
a Enumerated_Type_Base and Enumerated_Type_Ext in a base XSD file:

<xs:simpleType name="Enumerated_Type">
   <xs:union memberTypes="Enumerated_Type_Base Enumerated_Type_Ext"/>
</xs:simpleType>

<xs:simpleType name="Enumerated_Type_Base">
   <xs:restriction base="xs:NMTOKEN">
      <xs:enumeration value="ExistingValue"/>
      ...
   </xs:restriction>
</xs:simpleType>

<xs:simpleType name="Enumerated_Type_Ext">
   <xs:restriction base="xs:NMTOKEN"/>
</xs:simpleType>

In the xs:redefine section of a separate extension XSD file redefines 
the Enumerated_Type_Ext:

<xs:simpleType name="Enumerated_Type_Ext">
   <xs:restriction base="Enumerated_Type_Ext">
      <xs:enumeration value="ExtendedValue"/>
   </xs:restriction>
</xs:simpleType>

XSLT stylesheets are then optionally used to remove xs:redefine and 
xs:union given that many tools (particularly XML/OO language binders) do 
not support these constructs.

Thanks in advance,

Guillaume




From gkholman@C... Tue Mar 11 17:31:25 2008
Received: from mag


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent