Re: Distro package

2018-11-05 Thread Andy Seaborne
Sure - will get around to it: in the meantime, here is my current working version: The area to work on is where/how databases are managed between docker and host. The issue is efficiency of mmap access for TDB, especially for non-linux host OS's. I am wondering if VOLUMEs are the way to go.

Re: Fuseki Server vs Fuseki Embedded

2018-11-05 Thread Andy Seaborne
Fuseki Embedded is now called Fuseki Main. The webapp version with UI and administration is known as "Full". The download "apache-jena-fuseki", is the full server, in standalone and war file form. "Full" and "Main" are the same SPARQL engine packaged in different forms. Fuseki Full is a

Re: Loosely converting JSON/XML to RDF

2018-11-05 Thread Martynas Jusevičius
Transform XML to RDF/XML or TriX using XSLT: https://www.w3.org/TR/xslt20/ XSLT 3.0 can also transform JSON: https://www.w3.org/TR/xslt-30/#json On Mon, Nov 5, 2018 at 8:34 AM Laura Morales wrote: > > I have a mixed set of datasets in XML, JSON, and RDF formats. I would like to > convert all

Re: Loosely converting JSON/XML to RDF

2018-11-05 Thread Laura Morales
Thank you! I was completely unaware of this tool. I will definitely try it out! Do you have any links for their RML-Editor? They show screenshots and screencasts on the website but no source code to download.     Sent: Monday, November 05, 2018 at 8:54 AM From: "Alex To" To: 

Re: Loosely converting JSON/XML to RDF

2018-11-05 Thread Christopher Johnson
Another approach is to use JSON-LD. A JSON document can be "converted" to RDF by adding a context and using the toRDF method[1] in one of the JSON-LD libraries. Defining the context is similar to what is done with RML, basically mapping data objects to structured vocabulary terms. If your XML