-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
since version 2.0.894 enum is incorrected #421
Comments
I think this is due to #413. Sorry for the confusion. This is just a naming issue, not a functional one, right? |
Yeah! Value '11' converted into Item111 enum name and Value '11.1' is converted into Item111 enum |
Using the following as the whole XSD I'm unable to repro: <xs:simpleType name="EnumTest">
<xs:restriction base="xs:string">
<xs:enumeration value="11">
<xs:annotation>
<xs:documentation>Исключительные права на результат интеллектуальной деятельности</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11.1">
<xs:annotation>
<xs:documentation>Произведение науки, литературы или искусства</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType> I suspect that in your XSD there is another enum value that gets the name |
Version 2.0.878
Version > 2.0.878
enum with xml attribute 11 and 11.1 was value Item111
xsd
The text was updated successfully, but these errors were encountered: