From DBpedia-disccusion mailing list: https://groups.google.com/forum/#!topic/thosch/CN1kBh3auCk
- http://dbpedia.org/property/ (prefix
) for representing properties extracted from the rawdbp extractioninfobox - http://dbpedia.org/ontology/ (prefix
) for representing the DBpedia ontologydbo
Mapping-based Properties
High-quality data extracted from Infoboxes using the mapping-based extraction. The predicates in this dataset are in the /ontology/ namespace.
Note that this data is of much higher quality than the Raw Infobox Properties in the /property/ namespace. For example, there are three different raw Wikipedia infobox properties for the birth date of a person. In the /ontology/ namespace, they are all mapped onto one relation http://dbpedia. org/ontology/birthDate. It is a strong point of DBpedia to unify these relations.
Filtering dbo properties using SPARQL:
In case you need to exclude some properties such as http://dbpedia.org/ontology/wikiPageRedirects,SELECT ? s ? o WHERE
{
? s <http://www.w3.org/2000/01/rdf-schema#label> ? o .
FILTER regex( str( ? s), "^http://dbpedia.org/ontology") .
}
FILTER ( STR(?property ) NT O IN ("http://d bpedia.org/ontology/wikiPageRe directs") )