Open greenTara opened 9 years ago
The convertor from XSD to RNC appears to not handle
<xs:sequence minOccurs="0">
correctly.
There are 6 occurrences of this syntax in dr-flat.xsd
The following patterns are affect by this issue Atom.content Expr.content Plex.content ReactionRule.content Time.content Spatial.content
Consider replacing (e.g. by XSLT)
<xs:sequence minOccurs="0">
with
<xs:choice minOccurs="0">
<xs:sequence>
The replacement of
Instead of
Should be