How can I restrict an attribute to not allow a particular value?

For instance, I have an <xs:key/> on an Id attribute of an element, but some yahoo has gone and thrown a magic number in there so now I cannot allow 3, but 1, 2, and 5 are perfectly acceptable.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Have you tried having a look at the restriction tag link text, the code below, it should give you a tag called Id which only allows integers that doesn't start with a 3

<xs:key name="Id">
    <xs:simpleType>
        <xs:restriction base="xs:integer">
            <xs:pattern value="[^3]\d*"/>
       </xs:restriction>
  </xs:simpleType>
</xs:key>
link|improve this answer
1  
This is how I do it. After you declare your simple type, be sure to set your element type to "Id". – DustinDavis Jan 18 '11 at 22:53
Wouldn't this also stop 37, 333, and 31415 from being valid? If so, this won't do, as I can only specify that that identifier is taken, but have no control over any others used. – Lance May Jan 19 '11 at 19:19
1  
That is correct, if you remove the \d* I'm pretty sure you would have the desired result, however just to be complelety correct ^[^3]$ would be the correct pattern for the Id excude just 3 – Meberem Jan 19 '11 at 22:37
feedback

You can specify restrictions using regular expressions. Take a look at this tutorial

link|improve this answer
feedback

I think a better pattern is [^3]|..+ which accepts all numbers with at least 2 digits. However, it still allows 03 which is another representation of 3. To disallow that, you can try something like [^3]|[^0].+ which disallows all representations with leading zeros.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.