Is it possible to represent a JSON Object as triples, using any RDF standard syntax?
I need to insert a JSON object into Apache JENA. So I need to convert A JSON object like:
{
"name":"John",
"age":30,
"cars":[ "Ford", "BMW", "Fiat" ]
}
Into a format accepted by Jena, the Triple Store.
Apache Jena accepts those formats (https://jena.apache.org/documentation/io/):
- Turtle
- RDF/XML
- N-Triples
- JSON-LD
- RDF/JSON
- TriG
- N-Quads
- TriX
- RDF Binary