I have a burning question concerning DBpedia. Namely, I was wondering how I could search for all the properties in DBpedia per page. The URI http://nl.dbpedia.org/property/einde concerns the property "einde". I would like to get all existing property/ pages. This does not seem too hard, but I don't know anything about SPARQL, so that's why I want to ask for some help. Perhaps there is some kind of dump of it, but I honestly don't know.
I second Joshua Taylor's answer, however if you want to limit the properties to the Dutch DBpedia, you need to change the default-graph-uri
query parameter to nl.dbpedia.org
and set the SPARQL endpoint to nl.dbpedia.org/sparql
, as in the following query. You will get a result-set of just above 8000 elements.
SELECT (COUNT(DISTINCT ?pred) AS ?count)
WHERE {
?pred a rdf:Property .
}
These are the Dutch translations of the properties that have been mapped from Wikipedia so far. The full English list is also available. According to mappings.dbpedia.org, there are ~1700 properties with missing Dutch translations.