I've got a problem with dbpedia sparql endpoint because the properties of the properties like the label of rdf:type are not stocked in the endpoint. So when I run this query :

SELECT * WHERE{http://dbpedia.org/ontology/Place ?predicat ?object. OPTIONAL{?predicat rdfs:label ?label} }

I've got nothing for ?label.

If someone got any idea to solve this problem it would be very helpful.

Thank's in advance.

Cyr

link|improve this question
Are you really trying to get the labels for the properties of a class? You can find them if you deference the predicate URLs in your example, like link, but they aren't very interesting. The label for rdf-schema#label is "label", for example... – glenn mcdonald Jun 4 '11 at 0:54
Yes, it's what I want – cyr Jun 6 '11 at 11:59
feedback

2 Answers

up vote 1 down vote accepted

You can't get the real labels from DBpedia because the SPARQL endpoint doesn't have them. But you can take the local name of the property URI. So, for rdfs:subClassOf you'd get "subClassOf". That's better than nothing. This can be done using Virtuoso's (non-standard) bif:regexp_replace function.

SELECT DISTINCT (bif:regexp_replace(STR(?p), "^.*[/#]", "") AS ?label) WHERE {
   <http://dbpedia.org/ontology/Place> ?p ?o .
}
link|improve this answer
feedback

I don't think there's a SPARQL solution. Dbpedia doesn't have the data you want, and I couldn't easily find a SPARQL endpoint for that RDF at W3C. And I don't think the Virtuoso dbpedia endpoint supports federation yet, even if we did find a SPARQL endpoint for W3C.

Happy to be proven wrong on any of those points.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.