Created
February 9, 2023 21:49
-
-
Save cosmin-marginean/16a5d0abb4e7c247d479896d3737e91d to your computer and use it in GitHub Desktop.
BODS RDF - Person with more than 50% voting rights
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
personName | minShares | |
---|---|---|
Dan Suenson | 55.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment