Re: [xml-dev] variables in XSD?

From
David Carlisle <>
To
Date
2011-03-23T17:06:51Z
ID
<>
Thread
Re: [xml-dev] variables in XSD?
On 23/03/2011 16:48, trubliphone wrote:
> Hello.  Is there any way to use variables w/in XSD?
>
> I would like to bind the maxOccurs attribute of an element to a value
> defined elsewhere in the XSD file.  It could either be defined as its
> own variable or as a computed value.  I've been working in XSL for so
> long, I just sort of assumed I could do this:
>


You just knew that DTD were more fun than XSD so can come to your 
rescue, even if using XSD:

<!DOCTYPE xs:schema [
<!ENTITY n "23">
]>
  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
     <xs:element name="root">
       <xs:complexContent>
         <xs:sequence>
           <xs:element name="foo" minOccurs="0" maxOccurs="&n;"/>
         </xs:sequence>
       </xs:complexContent>
     </xs:element>

  </xs:schema>




________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________