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
This JSON Schema:
"version": { "type": "integer", "minimum": -9007199254740991, "maximum": 9007199254740991 },
Is turned into this XSD:
<element name="version"> <simpleType> <restriction base="int"> <minInclusive value="1"/> <maxInclusive value="-1"/> </restriction> </simpleType> </element>
Instead, I believe you could use the XML type long and use Longs in the java that reads in those mins and maxes.
The text was updated successfully, but these errors were encountered:
Fix ethlo#29: Support longs
e876b3c
0ae8e80
8277d91
No branches or pull requests
This JSON Schema:
Is turned into this XSD:
Instead, I believe you could use the XML type long and use Longs in the java that reads in those mins and maxes.
The text was updated successfully, but these errors were encountered: