You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
xsd:double works when using native types, however, xsd:float is not handled
To Reproduce
just user literal data types xsd:float and xsd:double. xsd:float will yield { "@value": "1.0", "@type": "xsd:float" }
whereas xsd:double with yield 1.0 (as expected)
The text was updated successfully, but these errors were encountered:
I see that "2.4.3 - Otherwise, if the datatype IRI of value equals xsd:integer or xsd:double and its lexical form is a valid xsd:integer or xsd:double according [XMLSCHEMA11-2], set converted value to the result of converting the lexical form to a JSON number.", but would it break things if we include xsd:float?
Describe the bug
xsd:double works when using native types, however, xsd:float is not handled
To Reproduce
just user literal data types xsd:float and xsd:double. xsd:float will yield { "@value": "1.0", "@type": "xsd:float" }
whereas xsd:double with yield 1.0 (as expected)
The text was updated successfully, but these errors were encountered: