Skip to content

Instantly share code, notes, and snippets.

View cosmin-marginean's full-sized avatar

Cosmin Marginean cosmin-marginean

View GitHub Profile
@cosmin-marginean
cosmin-marginean / panama-papers-jurisdiction-geo-names-fixes.properties
Last active May 15, 2017 14:41
Panama Papers - Jurisdiction geo names code fixes
# Most of the Geo names in the Panama Papers are using the right codes but some
# are inconsistent or plain incorrect. The problems are usually:
# * Mostly ISO-3166 alpha3 for country codes, but some sporadic alpha2 codes as well. We're
# fixing this by always reverting to the alpha3 code.
# * Some incorrect codes (STLU, MARSH, WYO).
# * It's not clear if some codes (DUBAI, LABUA) are actual jurisdictions. We are using the
# "parent" country for these but you might want to adjust them for your use case.
# This translation table addresses all these issues.
# Countries
@cosmin-marginean
cosmin-marginean / bods-rdf-find-ubos.sparql
Created February 5, 2023 10:04
BODS RDF - Find UBOs for a target
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX bods-res: <http://bods.openownership.org/resource/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?uboName ?directCtrlCompanyName
WHERE {
?ubo rdf:type bods:Person .
?ubo foaf:name ?uboName .
?ubo bods:ownsOrControls ?directCtrlCompany .
@cosmin-marginean
cosmin-marginean / bods-rdf-ubo-ownership-chain.sparql
Created February 5, 2023 10:05
BODS RDF - Find UBOs ownership chain
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX bods-res: <http://bods.openownership.org/resource/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?uboName ?parent ?child
WHERE {
?ubo bods:ownsOrControls* ?a .
?ubo foaf:name ?uboName .
?ubo rdf:type bods:Person .
@cosmin-marginean
cosmin-marginean / find-ultimate-parents.sparql
Created February 6, 2023 11:56
BODS RDF - Identifying ultimate parents for a target
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX bods-res: <http://bods.openownership.org/resource/>
SELECT ?ultimateParent ?ultimateParentName
WHERE {
?ultimateParent bods:ownsOrControls+ bods-res:openownership-register-12337862642105981237 .
?ultimateParent foaf:name ?ultimateParentName .
?ultimateParent rdf:type bods:Entity .
@cosmin-marginean
cosmin-marginean / ultimate-parents-ownership-chain.sparql
Created February 6, 2023 11:58
BODS RDF - Ultimate parents ownership chain
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX bods-res: <http://bods.openownership.org/resource/>
SELECT ?parentName ?childName
WHERE {
?ultimateParent bods:ownsOrControls* ?parent .
?ultimateParent rdf:type bods:Entity .
?parent foaf:name ?parentName .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 9, 2023 21:41
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 .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 9, 2023 21:49
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 .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 9, 2023 22:17
BODS RDF - Ownership chain between a UBO and a company with intermediate shares percentage
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bods: <http://bods.openownership.org/vocabulary/>
PREFIX bods-res: <http://bods.openownership.org/resource/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?parentName ?minShares ?childName
WHERE {
?ctrlStatement bods:hasInterestedParty ?parent .
?ctrlStatement bods:hasSubject ?child .
?ctrlStatement bods:statesInterest ?interest .
@cosmin-marginean
cosmin-marginean / query.sparql
Last active February 10, 2023 13:24
BODS RDF - People with direct or indirect control over a company, along with the entities that these people control directly.
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 bods-res: <http://bods.openownership.org/resource/>
SELECT DISTINCT ?personName ?directControl (GROUP_CONCAT(?directControlCompanyName;SEPARATOR="; ") as ?companiesControlledDirectly)
WHERE {
?person bods:ownsOrControls+ bods-res:openownership-register-12337862642105981237 .
?person rdf:type bods:Person .
?person foaf:name ?personName .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 10, 2023 13:35
BODS RDF - All the entities connected to a target: entities with control over the target or which the target controls (directly or indirectly)
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 bods-res: <http://bods.openownership.org/resource/>
SELECT ?companyName ?relationship
WHERE {
?company rdf:type bods:Entity .
?company foaf:name ?companyName .
{