[Home] [By Thread] [By Date] [Recent Entries]

  • To: Lefèvre@i..., Marc <Marc.Lefevre@s...>
  • Subject: Re: Schema validation
  • From: ht@c... (Henry S. Thompson)
  • Date: Mon, 15 Sep 2003 16:46:22 +0100
  • Cc: "'xmlschema-dev@w...'" <xmlschema-dev@w...>, "'xml-dev@l...'" <xml-dev@l...>
  • In-reply-to: <6B2492D663ECD4119EB70008C7E6F67303EA7486@d...> (Marc Lefèvre's message of "Mon, 15 Sep 2003 08:59:26+0200")
  • References: <6B2492D663ECD4119EB70008C7E6F67303EA7486@d...>
  • User-agent: Gnus/5.1002 (Gnus v5.10.2) XEmacs/21.4 (Rational FORTRAN, linux)

Your schema includes a content model similar to the following in
DTD-notation:

  ( IDAH+ | CWG | ( IDAH+ , CWG) )

This is not allowed, by XML 1.0 in a DTD, and by W3C XML Schema in a
schema, because given an IDAH element in an instance, a processor
cannot immediately determine whether the first or the third branch of
the above choice is to be followed.

If you rewrite the above as

  ( CWG | ( IDAH+ , CWG?) )

or

  <xs:choice>
   <xs:element ref="CommentWorkGrid"/>
   <xs:sequence>
    <xs:element ref="IndicationDaysAndHours" minOccurs="28" maxOccurs="28"/>
    <xs:element ref="CommentWorkGrid" minOccurs="0">
     <xs:annotation>
       <xs:documentation>90037</xs:documentation>
     </xs:annotation>
    </xs:element>
   </xs:sequence>
 </xs:choice>

it will be OK.

ht
-- 
  Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
                     Half-time member of W3C Team
 2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
          Fax: (44) 131 650-4587, e-mail: ht@c...
                  URL: http://www.ltg.ed.ac.uk/~ht/
[mail really from me _always_ has this .sig -- mail without it is forged spam]

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member