Skip to content

Instantly share code, notes, and snippets.

@cosmin-marginean
Created February 9, 2023 21:41
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/b213d16487db62dd6ac1c840c3053d8b to your computer and use it in GitHub Desktop.
Save cosmin-marginean/b213d16487db62dd6ac1c840c3053d8b to your computer and use it in GitHub Desktop.
BODS RDF - Shareholders with at least 20% shares
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 ?interestType
WHERE {
?person rdf:type bods:Person .
?person foaf:name ?personName .
?ctrlStatement bods:hasInterestedParty ?person .
?ctrlStatement bods:hasSubject bodsr:openownership-register-2967217108716500651 .
?ctrlStatement bods:statesInterest ?interest .
?interest bods:interestType ?interestType .
?interest bods:sharesMin ?minShares . FILTER (?minShares >= 20)
}
ORDER BY ?personName
personName minShares interestType
Claire Alison Smith 25.0 shareholding
Claire Alison Smith 25.0 voting-rights
Geoffrey William Stocker 25.0 shareholding
Geoffrey William Stocker 25.0 voting-rights
Lisa Jane Wolger 25.0 shareholding
Lisa Jane Wolger 25.0 voting-rights
Martin Charles Green 25.0 shareholding
Martin Charles Green 25.0 voting-rights
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment