Nice to meet you. I want to use classes in DBPedia ontlogy. Specifically, I want to get the list of classes and the list of properties that the classes have.
Previously, the list of classes (hierarchy) could be confirmed with this URL(http://mappings.dbpedia.org/server/ontology/classes/), but now it is inaccessible due to a 503 server error. Similarly, I was able to check the property list of the class at the URL, but this is also unavailable.
At least, I found a solution about the class list by writing the following SPARQL.
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?subclass ?superclass where {
?subclass rdfs:subClassOf ?superclass
}
However, how do I get the list of properties that a class has?
For example, I was able to confirm from the above URL that the ComicsCreator class has properties such as “academyAward” like this images.
However, in this URL(http://live.dbpedia.org/ontology/ComicsCreator) that can be confirmed now, the property “academyAward” does not exist.