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
ontology_helper._get_datatype_restriction()
Example: Restricting Percentage to integer values.
Maybe return xsd:Integer instead of throwing "Ambiguous datatype" when possible. This will in principle follow PEP https://peps.python.org/pep-0484/#the-numeric-tower
xsd:Integer
But to check with dispatcher. Do we have a way to restrict Float class?
Float
But: Doesn't we produce inconsistent ontology (xsd:integer is not a subclass of xsd:float)? Maybe there are better ways?
The text was updated successfully, but these errors were encountered:
dsavchenko
No branches or pull requests
Example: Restricting Percentage to integer values.
Maybe return
xsd:Integer
instead of throwing "Ambiguous datatype" when possible.This will in principle follow PEP https://peps.python.org/pep-0484/#the-numeric-tower
But to check with dispatcher. Do we have a way to restrict
Float
class?But: Doesn't we produce inconsistent ontology (xsd:integer is not a subclass of xsd:float)? Maybe there are better ways?
The text was updated successfully, but these errors were encountered: