7 Replies Latest reply on Oct 3, 2008 10:30 AM by dmlloyd

    jboss-classload*.xsd appears to be broken

    dmlloyd

      Many of the attributes in these xsd files are written like so:

       <xsd:attribute name="name" type="xsd:string" optional="true">
      


      I'm pretty sure this should be like:

       <xsd:attribute name="name" type="xsd:string" use="optional">
      


      Also IDEA seems fairly certain that you can't use the "base" attribute here, though I'm not sharp enough on my xsd to say for sure:
       <xsd:simpleType name="version" base="xsd:string">
      


      Are these really bugs or am I missing something?