[
Lists Home |
Date Index |
Thread Index
]
Hi,
I will say this time:
"you can do this very easily in Relax NG"
:)
<element name="myElement">
<optional>
<group>
<attribute name="name"><data type="string"/></attribute>
<optional>
<attribute name="myattr"><data type="boolean"/></attribute>
</optional>
</group>
</optional>
</element>
or, in compact syntax:
element myElement {
(
attribute name { xsd:string },
attribute myattr { xsd:boolean }?
)?
}
Best Regards,
George
---------------------------------------------------------------------
George Cristian Bina
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
|