We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
p-props-correct.2.1
if minOccurs > maxOccurs in xs:element, xerces report a p-props-correct.2.1 and the range is not managed:
Here the XSD sample:
<?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexType name="testType"> <xs:all> <xs:element name="testEle" minOccurs="1" maxOccurs="0" type="xs:string"/> </xs:all> </xs:complexType> </xs:schema>
The text was updated successfully, but these errors were encountered:
Should the error range cover "xs:element" or "minOccurs="1""? Either one, I am able to do very easily.
Sorry, something went wrong.
I would say minOccurs="1"" @NikolasKomonen @fbricon what do you think?
I just spoke with @fbricon, it should be "minOccurs="1""
xorye
Successfully merging a pull request may close this issue.
if minOccurs > maxOccurs in xs:element, xerces report a
p-props-correct.2.1
and the range is not managed:Here the XSD sample:
The text was updated successfully, but these errors were encountered: