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

Re: XML Schema Simple Type Definitions


xml schema simple type
on 2/6/02 2:48 PM, CHIUSANO, Joseph at JCHIUSANO@l... wrote:

> I am using this simple type for several local elements.  I would also like to
> declare another simple type (for example, called "SomeNewCodeType") which will
> also be string length 5.  I can certainly declare it as follows:
> 
> <xsd:simpleType name = "SomeNewCodeType">
>   <xsd:restriction base = "xsd:string">
>       <xsd:maxLength value = "5" fixed = "true"/>
>   </xsd:restriction>
> </xsd:simpleType>
> 
> However, I'd like to define the "SomeNewCodeType" simple type as type
> "String5VariableType" if possible.  The only way I see that this can be done
> is by declaring a restriction with a base type of "String5VariableType" and
> then specifying a facet such as maxInclusive of "99999" (to have something
> listed as a restriction), or perhaps a regular expression - but this seems
> awful kludgy. 

By specifying fixed="true" you are saying that the value for this type is
fixed, and that value is "true". Is that what you want, or are you trying to
define an enumeration consisting of a fixed set of tokens? If it is the
latter, you might try:

<simpleType name="SomeNewCodeType">
    <restriction base="NCName">
        <enumeration value="Foo"/>
        <enumeration value="Bar"/>
        ...
    </restriction>
</simpleType>

If, on the other hand, the value is numeric, for example, a 32-bit hex value
preceded by a # sign, you may define the type as:

<simpleType name="Hex32">
    <restriction base="string">
        <length value="9"/>
        <maxLength value="9"/>
        <minLength value="9"/>
        <pattern value="#[0-9a-fA-F]{8}"/>
    </restriction>
</simpleType>

There is nothing kludgy about using facets that include regular expressions.
It all depends on what you want the end result to be.

Hope this helps.

Ramesh


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.