# A few prefix declaration that enable us create records (triples or 3-tuples) using shorthand oriented compact URIs

@prefix owl:  <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix opl: <http://www.openlinksw.com/schemas/cert#> .
@prefix cert: <http://www.w3.org/ns/auth/cert#> .
@prefix : <#> .

# Information about the document (resource) that delivers this content. Basically, <> denotes (names) this document (resource) which is the conduit to the content that follows

<> a foaf:Document . 
<> rdfs:label "A Simple Linked Data Meshup" .
<> rdfs:comment "Simple Turtle File That Meshes / Smushes data from various data sources " .
<> rdfs:seeAlso <http://opencorporates.com/corporate_groupings/barclays.rdf> .
<> foaf:maker :this .

# Using topic relationships as gateway to additional data sources via their Linked Data URIs

# Commented out since it doesn't resolve at this point in time: 
#<> foaf:topic <http://opencorporates.com/id/corporate_groupings/barclays> .

<> foaf:topic <http://opencorporates.com/id/companies/gb/01026167> . 
<> foaf:topic <http://linkeddata.uriburner.com/about/id/entity/http/www.linkedin.com/company/barclays> .
<> foaf:topic <http://yago-knowledge.org/resource/Barclays> . 
<> foaf:topic <http://dbpedia.org/resource/Barclays> . 

# Some Attribution oriented data

:this a foaf:Person . 
:this owl:sameAs <http://kingsley.idehen.net/dataspace/person/kidehen#this> .
:this wdrs:describedby <> . 
<http://opencorporates.com/id/corporate_groupings/barclays> wdrs:describedby <http://opencorporates.com/corporate_groupings/barclays.rdf> .

# This relationship (equivalence by URI based name) brings in additional information from LinkedIn (Employees and Job Postings), Yago, and DBpedia 

# Commented out until URI resolves
# <http://opencorporates.com/id/corporate_groupings/barclays> owl:sameAs <http://linkeddata.uriburner.com/about/id/entity/http/www.linkedin.com/company/barclays> . 

<http://opencorporates.com/id/companies/gb/01026167> owl:sameAs <http://linkeddata.uriburner.com/about/id/entity/http/www.linkedin.com/company/barclays> .
<http://opencorporates.com/id/corporate_groupings/barclays> owl:sameAs <http://yago-knowledge.org/resource/Barclays> .
<http://opencorporates.com/id/corporate_groupings/barclays> owl:sameAs <http://dbpedia.org/resource/Barclays> .
