-
Notifications
You must be signed in to change notification settings - Fork 570
New issue
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
JSON-LD serialization apparently loses XSD type information. #2812
Comments
The default JSON-LD & Turtle datatypes are So [
{
"@id": "https://test.subject",
"https://test.predicate": [
{
"@value": "test type",
"@type": "http://www.w3.org/2001/XMLSchema#string"
}
]
}
] is equivalent to [
{
"@id": "https://test.subject",
"https://test.predicate": [
{
"@value": "test type"
}
]
}
] If you apply any sort of special datatype to the literal, JSON-LD & Turtle etc will preserve it. So nothing is lost and I see no issue here. |
True, if a Still I find it confusing that if E.g. serializing the above @prefix ns1: <https://> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ns1:test.subject ns1:test.predicate "test type"^^xsd:string . serializing to JSON-LD results in [
{
"@id": "https://test.subject",
"https://test.predicate": [
{
"@value": "test type"
}
]
}
] This behavior makes it at least more difficult to test for explicitly passed datatypes, which is where I encountered the issue. |
I think the behavior might be controlled by line 273 in jsonld.py, I will need to take a closer look though. |
From the RDF 1.2 Spec, Section 3.3: Please note that concrete syntaxes MAY support simple literals consisting of only a lexical form without any datatype IRI, language tag, or base direction. Simple literals are syntactic sugar for abstract syntax literals with the datatype IRI http://www.w3.org/2001/XMLSchema#string (which is commonly abbreviated as xsd:string). So the behaviour is fine but I agree that if Please feel free to create a PR to implement this behaviour! You might check the Turtle and HexTuples serializations too... |
Supplying an XSD type argument to the rdflib.Literal datatype parameter should be reflected in JSON-LD serializations. Closes: RDFLib#2812
Supplying an XSD type argument to the rdflib.Literal datatype parameter should be reflected in JSON-LD serializations. Closes: RDFLib#2812
…zation (#2889) * feat: Reflect explicitly XSD-typed Literals in JSON-LD serialization Supplying an XSD type argument to the rdflib.Literal datatype parameter should be reflected in JSON-LD serializations. Closes: #2812 * test: Add/modify tests for XSD-typed JSON-LD serialization Modify test "t#0018" in JSON-LD test-suite: Add XSD types to the expected JSON-LD output. Add test "t#0020" in JSON-LD test-suite: Add another test with mixed explicit typing in the input source. --------- Co-authored-by: Ashley Sommer <[email protected]>
This change is problematic. In RDF 1.1 a Literal always has a datatype (see #1326 and #2460). Once that is fixed, this change for JSON-LD will add " The behavior in the jsonld implementation was a compromise which #2889 undid. A more correct fix should coordinate with the fix of the aforementioned problems. In the JSON-LD 1.1 algorithm spec, step 2.4, this can be controlled uniformly with the |
Thanks for pointing this out! I still feel like #2889 is justified until the above mentioned changes are in place though. |
Maintainers are considering a complete review of all the parsers and serializers. The plan is to be specific about the parameters that each can accept, to enable some that are nto currently available, and document them all properly. So things like But, as per the comment above, we don't have this functionality yet, so we'd best off leave the PR as implemented above and then enable choice when we support |
JSON-LD serialization apparently loses XSD type information.
The text was updated successfully, but these errors were encountered: