-
Notifications
You must be signed in to change notification settings - Fork 157
is there a working json-ld client supporting 1.1 for testing? #504
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
Comments
While I believe there may be other implementations in the works, the only one I know of is my own Ruby Version: http://github.com/ruby-rdf/json-ld. It is used in developing the specs, and is fully compliant with all new 1.1 features. |
@gkellogg Thanks! we will check it out. |
Also check out dotNetRDF: https://github.com/dotnetrdf/dotnetrdf looks like it's moving in that direction. |
@newgene, we haven't implemented any 1.1 features in the JavaScript library (jsonld.js) yet. Some 1.1 work was started but had to be postponed to move cycles over to a few other projects. Also, we've now got modularizing and adding a new build system as the next highest priority change to the library. Once the restructuring is complete, it should be easier to implement new features. All that to say -- we fully plan on implementing, it's just a matter of time and free cycles to do it. |
Since the ruby client has the most complete 1.1 support, I put up a simple "jsonld playground' test site for us to test those new 1.1 features. In case anyone else finds it's useful, it's here: http://jsonld.biothings.io/. It uses the latest Ruby json-ld client (v2.1.4) on the server-side to do the JSON-LD processing. It meant to be a temp test site, till the actual JSON-LD playground is updated. |
@gkellogg I don't know how to do the "normalize" operation using ruby client (like the normalize method in javascript client). Right now, it's the same as "N-Quads" on this temp site. Also, the "Frame" tab is just using the empty "{}" as the "--frame" parameter. |
@newgene That's great! I'm starting to update my own distiller which is focused on RDF transformations to handle use cases like these, and many more, by leveraging the logic behind the Normalization can be done using the |
If you like, add a PR to list your tool in the json-ld Developers section, perhaps in the Ruby tab. I believe @lanthaler has a playground based on his PHP version too, but not at 1.1 quite yet. |
@gkellogg I just added "frame" input support. As I'm not familiar with Ruby, this web app is built using Python, but calling your ruby client executable |
@newgene I added the RDF::Normalization gem to the linkeddata gem, so that you can select |
@gkellogg when I try this cmd, I got an error:
If this is not the version with your latest changes, I can wait till it's released. Also, can |
Make sure you have the latest version of the 'linkeddata' gem, which is included by the rdf CLI to find appropriate serializers and deserializers. |
@gkellogg got it! I missed some error msg while installing "linkeddata" gem. Fixed now. "normalize" tab now works. |
Hello, there are many great features have been implemented in the coming JSON-LD 1.1 specs. Is there any json-ld client (js, python?) available with even partial support of these hot new 1.1 features? I'm particularly interested in the "scoped context (#247)" and "term-level @vocab (#369)" features.
Understand that 1.1 is still not finalized yet, but is there any parallel effort to bring some 1.1 support to the clients? Thanks for your great work here!
The text was updated successfully, but these errors were encountered: