I am trying to build an application using Apache Stanbol which:
- recognizes entities from DBpedia
classifies these entities using an OWL ontology which extends the definition of the
dcterms:subject
of these entities to correspond to my custom OWL class,OwnClass
:<owl:Class rdf:ID="OwnClass"> </owl:Class> <rdf:Description rdf:about="http://dbpedia.org/resource/Category:Branding"> <rdf:type rdf:resource="#OwnClass"/> </rdf:Description>
So far I am able to extract the entities with their categories from DBpedia using the Stanbol Enhancer. But I cannot figure out where I have to integrate my ontology in order to classify these entities? My final goal is to have a JSON document reflecting the hierarchy: OwnClass
⇒ DBpedia category ⇒ entity. Is this possible with Stanbol and, if yes, how can I achieve this?