I'm generating RDF for a database table(s). I generated OWL ontology for the table(s) using Protege. I want to use this OWL ontology and create the RDF in RDF/XML format for table data using Jena.

I know how to read/write RDF, OWL files into memory to generate Model & I know how to use Resource, Property, ModelFactory etc Classes to generate RDF. But what I'm unable to do is- Use the ontology (OWL file) I generated and create the RDF instances for those OWL class(s). For example:

sample OWL ontology I have

<owl:Class rdf:about="Person"/>
<owl:Class rdf:about="Animal"/>

<owl:DatatypeProperty rdf:about="salary">
    <rdfs:domain rdf:resource="Person"/>
    <rdfs:range rdf:resource="&xsd;real"/>
</owl:DatatypeProperty>

RDF required is-

<Person rdf:about="Jack">
<salary>1234</salary> 
</Person>

I'm able to generate RDF like this-

<rdf:Description rdf:about="Jack">
<ns:salary>2004</ns:salary>
</rdf:Description>
link|improve this question

0% accept rate
actually i dont understand what you want. Do you want to create individuals using your ontology? – Çağdaş Feb 14 at 20:20
I'm not aware of 'individual' concept. I'll check that and get back to you. Thanks. – Hari Gudigundla Feb 14 at 20:45
In your example, "Jack" is an individual. Also, what exactly are you trying to accomplish? You seem a bit confused about the distinctions between RDF & OWL, so perhaps if you describe what you want to achieve, we might be able to give you more directed information. – Michael Feb 14 at 20:50
@Michael I'm trying to generate RDF/XML for the database table data as mentioned above. So I need to use the ontology and create individuals (probably each for each row in the table). – Hari Gudigundla Feb 14 at 21:01
@Michael I'm able to create individual(s) and add properties to them. But when I try to serialize them using write() method, it's serializing the whole OWL ontology along with the individuals. As I already have an ontology I would like to serialize the individuals I create. Any help on this. – Hari Gudigundla Feb 14 at 21:32
show 1 more comment
feedback

1 Answer

What you want is a so called RDB2RDF mapper. Try D2RQ, a Java-based RDB2RDF mapper, for example.

Disclaimer: I'm co-chair of the W3C RDB2RDF Working Group and my group is heavily contributing to the development of D2RQ - there are a number of other implementations in various languages available as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.