why does dbpedia is using multiple vocab for same attributes. I have to get data of all possible movies. for each movie I have observered that it has dbpedia-owl and dbpprop vocab for producers, director and so on.. while retrieving the attribute with following query:
I'll have page id of each movie and then I'll retrieve stars and producers. For some think dbpedia-owl works and for some dbpprop works.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?star_name
WHERE {
<http://dbpedia.org/resource/Goal_III:_Taking_on_the_World> dbpedia-owl:starring ?star.
?star foaf:name ?star_name
}
I am puzzled about it. I have to write a code in python to run this query for each movie. hence every time I'll have to check that it result is null then run for other vocab