afs commented on issue #1254: URL: https://github.com/apache/jena/issues/1254#issuecomment-1101575333
@gkellogg -- Hi Gregg, the 1.0 and 1.1 playgrounds confirm this difference in behaviour for the "book:YYY". If you have a moment, could you point to which of items in https://www.w3.org/TR/json-ld11/#changes-from-10 is causing this? Simplified version: ```json { "@id" : "http://example/collection", "http://example/p" : [ "book:ZZZ" ], "book" : [ "book:YYY" ], "@context" : { "book" : { "@id" : "http://onbetween.ch/3ms/cms#", "@type" : "@id" } } } ``` gives 1.0 playground: ```nt <http://example/collection> <http://example/p> "book:ZZZ" . <http://example/collection> <http://onbetween.ch/3ms/cms#> <http://onbetween.ch/3ms/cms#YYY> . ``` or 1.1 playground: ```nt <http://example/collection> <http://example/p> "book:ZZZ" . <http://example/collection> <http://onbetween.ch/3ms/cms#> <book:YYY> . ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
