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
src-element.3
Given:
<a xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="intType.xsd"> <b></b> </a>
and the XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="a" type="xs:integer"> <xs:complexType> <xs:sequence> <xs:element name="b"></xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
You get errors on both documents:
The XML:
The XSD:
The text was updated successfully, but these errors were encountered:
For the XML, I was thinking the error range should cover the element name "a".
For the XSD, should the error range be at "xs:element"? Or should it be at "type="xs:integer"" or "xs:complexType"?
Sorry, something went wrong.
This is what I currently have
xml:
xsd:
xorye
Successfully merging a pull request may close this issue.
Given:
and the XSD:
You get errors on both documents:
The XML:
The XSD:
The text was updated successfully, but these errors were encountered: