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>