Here's a query similar to what you want:
SELECT *
WHERE
{
?person rdf:type yago:BritishKnights .
?person foaf:givenName ?name.
FILTER regex(?name, "Walter", "i")
}
LIMIT 100
It selects British Knights with the name "Walter". It works in the DBPedia sparql endpoint. I think it's a decent starting point.
You'll find the following resources useful:
- British Knights - the concept used in my example query
Knights by occupation - here you can find links to some more resources than just BritishKnights. For example, Musicians and Actors are not returned by the query above, instead, they can be found in separate categories.
Knights - even more general, here you'll find hyperlinks to resources describing knights from different countries, etc.
- Sir - the concept of "Sir"
- Friend Of A Friend - an ontology for describing people and their relations. I used its
givenName property in my example
- vCard RDF ontology - another one with name properties
- A tutorial on SPARQL filters
EDIT:
Tim Berners-Lee can also be found. The British honours system does not seem simple at all. Good luck with your search. This query takes into consideration the kind of knighthood T. Berners-Lee was honored with.
SELECT *
WHERE
{
?person dcterms:subject category:Knights_Commander_of_the_Order_of_the_British_Empire .
?person foaf:givenName ?name.
FILTER regex(?name, "Tim", "i")
}
LIMIT 100
It's all a matter of getting to know the right data sets.
EDIT:
It's also possible to avoid using a FILTER if you use an appropriate RDF literal, such as:
SELECT ?person
WHERE
{
?person rdf:type yago:BritishKnights .
?person foaf:givenName "Walter"@en .
}
More information on this can be found in the w3c specification
given namefield in the infobox is a blocker and then my very vague knowledge of the various ontologies and how they link up in DBPedia to the Wikipedia data. As for knights, I thought the Wikipedia categoryKnights Commander of the Order of the British Empireshould do the trick. – hippietrail Jul 29 '12 at 10:23