RE: simpleType in restriction

> In the definition of restriction:
> <restriction
>   base = QName
>   id = ID
>   {any attributes with non-schema namespace . . .}>
>   Content: (annotation?, (simpleType?, (minExclusive | minInclusive |
> maxExclusive | maxInclusive | totalDigits | fractionDigits | length |
> minLength | maxLength | enumeration | whiteSpace | pattern)*))
> </restriction>

<simpleType name="fivePosInts">
    <restriction> 
        <simpleType> 
            <list itemType="positiveInteger"/> 
        </simpleType> 
        <length value="5"/>
     </restriction> 
</simpleType>          

Received on Wednesday, 30 May 2001 16:36:24 UTC