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 / query.sparql
Last active February 10, 2023 13:52
BODS RDF - Complete path between two entities
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 ?parentName ?childName
WHERE {
bods-res:openownership-register-14328799669345784668 bods:ownsOrControls* ?parent .
?parent bods:ownsOrControls ?child .
?parent foaf:name ?parentName .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 17, 2023 13:28
BODS RDF - Other companies controlled by the same individuals
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 ?personName ?companyName
WHERE {
?person rdf:type bods:Person .
?person foaf:name ?personName .
?person bods:ownsOrControls bods-res:openownership-register-227513236687367494 .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 17, 2023 13:29
BODS RDF - Control details for other companies
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 ?personName ?companyName ?interestType ?minShares
WHERE {
?person rdf:type bods:Person .
?person foaf:name ?personName .
?person bods:ownsOrControls bods-res:openownership-register-227513236687367494 .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 17, 2023 13:33
BODS RDF - All the companies that an individual controls directly
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 ?companyName ?interestType ?minShares
WHERE {
?ctrlStatement bods:hasInterestedParty bods-res:openownership-register-13699371219421575920 .
?ctrlStatement bods:hasSubject ?company .
?ctrlStatement bods:statesInterest ?interest .
@cosmin-marginean
cosmin-marginean / query.sparql
Created February 17, 2023 13:39
BODS RDF - Common ownership or control
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 ?name ?type
WHERE {
?entity bods:ownsOrControls+ bods-res:openownership-register-227513236687367494 .
?entity bods:ownsOrControls+ bods-res:openownership-register-11346547788507289239 .
?entity foaf:name ?name .
@cosmin-marginean
cosmin-marginean / query.sparql
Last active February 19, 2023 20:14
BODS RDF - Outstanding mortgages for a UBO's companies
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 bodsr: <http://bods.openownership.org/resource/>
PREFIX cht: <http://www.companieshouse.gov.uk/terms/>
SELECT DISTINCT ?companyName ?mortgages ?directControl ?directControlShares
WHERE {
bodsr:openownership-register-10981547892767219580 bods:ownsOrControls+ ?company .
?company foaf:name ?companyName .
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 bodsr: <http://bods.openownership.org/resource/>
PREFIX cht: <http://www.companieshouse.gov.uk/terms/>
SELECT DISTINCT ?companyName ?mortgages
WHERE {
?parent bods:ownsOrControls+ ?company .
?parent bods:ownsOrControls+ bodsr:openownership-register-8251351163712700915 .
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 bodsr: <http://bods.openownership.org/resource/>
PREFIX cht: <http://www.companieshouse.gov.uk/terms/>
SELECT DISTINCT ?companyName ?accountsDueDate
WHERE {
bodsr:openownership-register-14662912447190623115 bods:ownsOrControls+ ?company .
?company foaf:name ?companyName .
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 bodsr: <http://bods.openownership.org/resource/>
PREFIX cht: <http://www.companieshouse.gov.uk/terms/>
SELECT DISTINCT ?companyName (GROUP_CONCAT(?sic;SEPARATOR=",") as ?sicData)
WHERE {
bodsr:openownership-register-14662912447190623115 bods:ownsOrControls+ ?company .
?company foaf:name ?companyName .
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 bodsr: <http://bods.openownership.org/resource/>
PREFIX cht: <http://www.companieshouse.gov.uk/terms/>
SELECT DISTINCT ?sic (GROUP_CONCAT(?companyName;SEPARATOR="; ") as ?companies)
WHERE {
bodsr:openownership-register-14662912447190623115 bods:ownsOrControls+ ?company .
?company cht:SicText ?sic .