I have some data let us say:
"Mike": "flower"
I can use some owl ontologies or I can create my own ontology using Protege to convert this data to RDF triples to be as the following:
<http://some_URI/Mike> <http://DBpedia#likes> <http://some_URIflower>
The problem is that there are some tools that allow you to use an ontology for mapping row data to RDF, such as Karma and Protege. But the problem is that you ALWAYS have to map each entity or instance of a class at a time. For example, I had to map Mike to Flower and set the property between them.
Question:
Is there a way or a tool that does the mapping for you automatically without mapping each entity at a time?
Simple JSON Input
{
"001": {
"caption": "Beautiful",
"object": "Flower"
},
"002": {
"caption": "white",
"object": "ice"
}
}
Mapping 001 and 002 instances using Karma
So even though 001 and 002 are same instance of a class and same level in the json file but still I have to map every one alone. How to tell karma to map every item in the same level of 001 as I did with 001 ? (I am talking about thousands of instances not only 2).
Desired output:
<001> <caption> "Beautiful"
<002> <caption> "white"