Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder how to get a list of properties for a specific class.

Imagine the class "Person" ( http://dbpedia.org/ontology/Person ). All instances of the "Person" class have some properties prefixed with "dbpprop.

So how to get all the 'dbpprop" that we may find for all the instance of the 'Person' class.

thanks :)

share|improve this question

1 Answer

up vote 9 down vote accepted

The one that works is:

select distinct ?property where { 
   ?property <http://www.w3.org/2000/01/rdf-schema#domain> 
                             <http://dbpedia.org/ontology/Person> . }

In this query you are asking for all the properties that have dbpedia:Person as rdfs:domain. This query requires a schema definition to work and sometime datasets don't really follow perfectly the schemas. For those datasets you would try this other query

select distinct ?property where {
         ?instance a <http://dbpedia.org/ontology/Person> . 
         ?instance ?property ?obj . }

This query looks at every instance of person binding every property that comes out of it. It is much harder than the first one, and in the dbpedia public instance you will get a time out. So you are better off with the first one if you want to use the public endpoint.

share|improve this answer
Thanks a lot :) – user878812 Aug 5 '11 at 13:19
your link does not work btw – keinabel Oct 22 '12 at 13:58
1  
thanks @keinabel ... just removed it. – msalvadores Oct 22 '12 at 17:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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