Skip to content

Instantly share code, notes, and snippets.

@cosmin-marginean
Created February 9, 2023 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosmin-marginean/16a5d0abb4e7c247d479896d3737e91d to your computer and use it in GitHub Desktop.
Save cosmin-marginean/16a5d0abb4e7c247d479896d3737e91d to your computer and use it in GitHub Desktop.
BODS RDF - Person with more than 50% voting rights
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX bodsr: <http://bods.openownership.org/resource/>
SELECT ?personName ?minShares
WHERE {
?person rdf:type bods:Person .
?person foaf:name ?personName .
?ctrlStatement bods:hasInterestedParty ?person .
?ctrlStatement bods:hasSubject bodsr:openownership-register-3357075131359519531 .
?ctrlStatement bods:statesInterest ?interest .
?interest bods:interestType "voting-rights" .
?interest bods:sharesMin ?minShares . FILTER (?minShares > 50)
}
ORDER BY ?personName
personName minShares
Dan Suenson 55.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment