You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ValueStatus(Enum):
REJECTED = "Rejected"
COMPLETED = "Completed"
...and uses it for both Root.UniqueName1 and Root.UniqueName2. This is incorrect, as a distinct Status enum should be generated for the Root.UniqueName2.
The text was updated successfully, but these errors were encountered:
Consider the following simple schema
And an example XML
According to tools like https://www.liquid-technologies.com/online-xsd-validator, the pair is valid. However, there's a problem with the output of
xsdata
. It generates a single:...and uses it for both
Root.UniqueName1
andRoot.UniqueName2
. This is incorrect, as a distinctStatus
enum should be generated for theRoot.UniqueName2
.The text was updated successfully, but these errors were encountered: