Skip to content

Instantly share code, notes, and snippets.

@cosmin-marginean
Created February 17, 2023 13:39
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/eabd412338ce3007d569871351e4bc6b to your computer and use it in GitHub Desktop.
Save cosmin-marginean/eabd412338ce3007d569871351e4bc6b to your computer and use it in GitHub Desktop.
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 .
{
?entity rdf:type bods:Entity .
BIND("Company" AS ?type)
}
UNION
{
?entity rdf:type bods:Person .
BIND("Person" AS ?type)
}
}
GROUP BY ?name ?type
ORDER BY ?type ?name
name type
EMENSE INVESTMENTS LIMITED Company
WELLPOND INVESTMENT HOLDINGS LTD Company
Emma Simons Person
Peter John Leuzzi Person
Sarah Louise Leuzzi Person
Spencer Howard Simons Person
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment