Next in thread → Next in month →

Re: [xml-dev] XML Schema validation question

From
Jonathan Robie <>
To
"Rodriguez, Oscar" <>
Date
2007-09-18T13:58:09Z
ID
<>
Thread
Re: [xml-dev] XML Schema validation question
You can create a datatype for integers between 1 and 100 like this:

<simpleType name='integer100'>
  <restriction base='integer'>
    <minInclusive value='1'/>
    <maxInclusive value='100'/>
  </restriction>
</simpleType>

Then use this type in your schema.

Jonathan


Jonathan

Rodriguez, Oscar wrote:
> Hi Pete and All -
>  
> I am trying to validate that a particular field is an integer (no 
> strings) with a limited numerical range.
>  
> Thanks for all the replies.
> - Oscar
>  
>  
>
> ------------------------------------------------------------------------
> *From:* Pete Cordell [mailto:]
> *Sent:* Tue 9/18/2007 7:07 AM
> *To:* Rodriguez, Oscar; 
> *Subject:* Re: [xml-dev] XML Schema validation question
>
> Hi Oscar,
>
> If you are looking to specify an integer type with a restricted numerical
> range, then you can see an example of this in our XML schema introduction
> at:
>
> http://www.codalogic.com/lmx/xsd-overview.html#DefiningMoreRestrictedSimpleTypes
>
> HTH,
>
> Pete.
> --
> =============================================
> Pete Cordell
> Codalogic
> for XML Schema to C++ data binding visit
>  http://www.codalogic.com/lmx/
> =============================================
>
> ----- Original Message -----
> From: "Rodriguez, Oscar" <>
> To: <>
> Sent: Monday, September 17, 2007 11:28 PM
> Subject: [xml-dev] XML Schema validation question
>
>
> [xml-dev] OASIS Identity and Trusted Infrastructure Workshop at Burton
> Catalyst Europe, 22 October 2007Hi -
>
> Does anyone know the XSD syntax to validate that a field is a numeric and
> the decimal part has a range between 1 and 100?
>
> Thanks
> - Oscar
>
Next in thread → Next in month →