SlideShare a Scribd company logo
What is Linked Data? 
Linked Data for Libraries, 6th Nov 2014, Royal Irish Academy 
Dr. 
Christophe 
Debruyne 
Digital 
Repository 
of 
Ireland 
– 
Royal 
Irish 
Academy 
Insight 
Centre 
of 
Data 
Analy<cs 
– 
NUI 
Galway 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
What is Linked Data? 
• Linked Data started off as a initiative called the Linking 
Open Data (LOD) project. 
• Linked Data is a global initiative to publish and interlink 
structured data on the Web using a combination of well 
established technologies. 
• Uniform Resource Identifiers – to name things; 
• Resource Description Framework – to represent things; 
• HTTP infrastructure – to obtain those representations. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Web of Documents vs. Web of Data 
• The Web of Documents were created by humans for 
humans; the links between documents bore little 
meaning for machines and documents provided little 
structured information. 
• Structured information can be found on the Web – such 
as XML, CSV, etc. – but, … 
• How do we link data rather than documents, and create 
a global “database” of information? 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Towards a Web of Documents 
• We need appropriate methods (guidelines) and 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
standards. 
• Tim Berners-Lee formulated four rules for creating 
and publishing Linked Data on the Web.
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
The four principles 
Number 
1 
“Use 
URIs 
as 
names 
for 
things.”
(1) Use URIs to name things 
• Use Uniform Resource Identifiers (URIs) to name 
everything you need to describe on the Web 
• People, geographical locations, books, … 
• Events, emotion, religion, … 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
• Examples 
• http://dbpedia.org/resource/James_Joyce 
• ftp://example.org/file.txt 
• urn:ISSN:1535-3613 
• But …
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
The four principles 
Number 
1 
“Use 
URIs 
as 
names 
for 
things.” 
Number 
2 
“Use 
HTTP 
URIs 
so 
that 
people 
can 
look 
up 
those 
names.”
(2) Use HTTP URIs to look up those names 
• HTTP URIs allow one to reuse the existing HTTP 
infrastructure to return something when one 
performs an HTTP GET request. 
• One can for instance put the HTTP URI in a 
browser’s address bar and – hopefully – get a 
result. 
• http://dbpedia.org/resource/James_Joyce 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
The four principles 
Number 
1 
“Use 
URIs 
as 
names 
for 
things.” 
Number 
2 
“Use 
HTTP 
URIs 
so 
that 
people 
can 
look 
up 
those 
names.” 
Number 
3 
“When 
someone 
looks 
up 
a 
URI, 
provide 
useful 
informa<on, 
using 
the 
standards 
(RDF, 
SPARQL)”
(3) Provide useful Information for URI look-ups 
• When entities are identified by URIs that use the http:// 
scheme, these entities can be looked up simply by 
dereferencing the URI over the HTTP protocol. 
• Simple, standardized mechanism for retrieving 
resources via these URIs. 
• Provide information suitable for the “consumer” 
• Humans rather see HTML pages, PDFs, pictures, … 
• Machines want machine-readable formats such as RDF 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Resource Description Framework 
• RDF is not (really) a language but a model (!!!) 
• RDF is a W3C recommendation 
• RDF is designed to be read by computers 
• RDF is for describing resources on the Web 
in terms of triples (subject – predicate – object) 
• RDF uses URIs to identify and reference resources on 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
the Web 
• RDF/XML is just one way of serializing RDF 
• Others are Turtle, N3, etc.
Resource Description Framework 
<?xml version="1.0" encoding="utf-8" ?> 
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
xmlns:foaf="http://xmlns.com/foaf/0.1/" > 
<rdf:Description rdf:about="http://dbpedia.org/resource/James_Joyce"> 
<foaf:name>Joyce, James Augustine Aloysius</foaf:name> 
<foaf:based_near rdf:resource="http://dbpedia.org/resource/Zurich" /> 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
</rdf:Description> 
</rdf:RDF>
foaf:name 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
foaf:based_near
Ontologies 
• An ontology is an “explicit [formal] specification of a [shared] 
conceptualization.” (Gruber, 1993) 
• RDF is the data model. 
• RDF, RDFS and OWL are ontology languages. 
• RDF à Declare types and relations; 
• RDFS à Declare type- & role hierarchies, domains and rages, etc. 
• OWL à Properties of relations, Disjointness, etc. 
• Popular ontologies for instance are Friend-of-a-Friend (FOAF), 
Simple Knowledge Organization System (SKOS), Dublin Core terms 
• Ontologies allows us to describe resources. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Information resources and non-information resources 
• Information resources are documents – referred to by a 
URI – that describe non-information resources – named 
with a URI – that represent things such as cars, people, 
etc. 
• The NIR http://dbpedia.org/resource/James_Joyce is 
described by the following IRs: 
• The web page http://dbpedia.org/page/James_Joyce 
• The RDF doc http://dbpedia.org/data/James_Joyce 
• Either is returned depending on what you need. How? 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Content negotiation – part of the HTTP infrastructure 
Resource identifiers: 
• HTTP URIs not only as a name, but also for a Web look-up. 
• Non-information resources can have multiple representations: 
HTML, RDF/XML, ... 
HTTP URI dereferencing: 
• To dereference → “To obtain the address of a data item held 
in another location from a pointer” 
• URI pointing to a IR returns the representation. 
• URI pointing to a NIR returns a redirect to an IR describing 
that NIR. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
Content negotiation 
Image 
from 
hSp://www.w3.org/TR/swbp-­‐vocab-­‐pub/
What should be returned? 
• RDF should be at least be represented as RDF/XML. 
• All RDF triples with the NIR’s URI as the subject in the 
triples. Triples where the NIR is a object are optional, 
but nice to have. 
• Descriptions about related resources and metadata 
(e.g. publisher, creation date, etc.) should be attached 
to the information resource. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Content negotiation in Linked Logainm 
Linked Logainm is a collaborative project undertaken 
by the DRI, Insight @ NUI Galway, Fiontar at DCU, the 
National Library of Ireland and the Placenames Branch 
of the Department of Arts, Heritage and the Gaeltacht. 
The Linked Logainm project has created a new open 
dataset, which allows Irish place names to be linked 
across the world by cutting edge technologies 
developed in Ireland. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Content negotiation in Linked Logainm 
Westport is identified by the URI http://data.logainm.ie/place/132920 
$ curl -H "Accept:text/rdf+n3" http:// 
data.logainm.ie/place/13292 
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 
@prefix spatial: <http://geovocab.org/spatial#> . 
<http://data.logainm.ie/place/132920> rdf:type 
spatial:Feature . 
@prefix ns2: <http://data.logainm.ie/category/> . 
<http://data.logainm.ie/place/132920> rdf:type ns2:B . 
@prefix owl: <http://www.w3.org/2002/07/owl#> . 
@prefix ns4: <http://linkedgeodata.org/triplify/> . 
<http://data.logainm.ie/place/132920> owl:sameAs 
ns4:node52244000 , 
<http://id.worldcat.org/fast/1210744> , 
<http://sws.geonames.org/2960970/> . 
@prefix foaf: <http://xmlns.com/foaf/0.1/> . 
<http://data.logainm.ie/place/132920> foaf:name "Westport"@en 
… 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
The four principles 
Number 
1 
“Use 
URIs 
as 
names 
for 
things.” 
Number 
2 
“Use 
HTTP 
URIs 
so 
that 
people 
can 
look 
up 
those 
names.” 
Number 
3 
“When 
someone 
looks 
up 
a 
URI, 
provide 
useful 
informa<on, 
using 
the 
standards 
(RDF, 
SPARQL)” 
Number 
4 
“Include 
links 
to 
other 
URIs, 
so 
that 
they 
can 
discover 
more 
things.”
(4) Include links to other URIs 
• Not only within the same dataset 
<http://dbpedia.org/resource/James_Joyce> 
dbpedia-owl:birthPlace 
<http://dbpedia.org/resource/Dublin"> . 
• But also across datasets 
<http://dbpedia.org/page/Dublin> 
owl:sameAs 
<http://sws.geonames.org/7778677/> . 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
Example of linking across datasets 
dbpedia-­‐owl:popula<onTotal 
gn:popula<on 
gn:name 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy 
hSp:// 
dbpedia.org/ 
resource/Dublin 
Dublin 
rdfs:label 
527612 
owl:sameAs 
hSp:// 
sws.geonames.org 
/7778677/ 
hSp:// 
sws.geonames.org 
/7778677/ 
527612 
Dublin 
City
Linked Data for Librarians – November 6, 2014 Linking 
Open 
Data 
cloud 
diagram 
2014, 
by 
Max 
Schmachten b–e Rrogy,a 
lC Irhisrhi sA<caadnem 
Byi zer, 
Anja 
Jentzsch 
and 
Richard 
Cyganiak. 
hSp://lod-­‐cloud.net/
References 
• Berners-Lee, T. (2006). Linked Data - Design Issues. 
Retrieved October 20 2014, http://www.w3.org/ 
DesignIssues/LinkedData.html 
• Gruber, T. R. (1993) Towards principles for the design of 
ontologies used for knowledge sharing. In Guarino, N. and 
Poli, R., eds. Formal Ontology in Conceptual Analysis and 
Knowledge representation. Kluwer Academic Publishers, 
Deventer, The Netherlands. 
• Hitzler, P., Krotzsch, M., and Rudolph, S. (2010) Foundations 
of Semantic Web Technologies. CRC Press, Boca Raton, 
FL, the US. 
• van Hooland, S. and Verborgh, R. (2014) Linked Data for 
Libraries, Archives and Museums. How to clean, link and 
publish your metadata. Facet Publishing, London, The UK. 
Linked Data for Librarians – November 6, 2014 – Royal Irish Academy

More Related Content

What's hot

NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
National Information Standards Organization (NISO)
 
Open Data - Principles and Techniques
Open Data - Principles and TechniquesOpen Data - Principles and Techniques
Open Data - Principles and TechniquesBernhard Haslhofer
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
Roberto García
 
Linked Data as an enabling framework for resource discovery across libraries,...
Linked Data as an enabling framework for resource discovery across libraries,...Linked Data as an enabling framework for resource discovery across libraries,...
Linked Data as an enabling framework for resource discovery across libraries,...
Andy Powell
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Sören Auer
 
Linked data radical change
Linked data   radical changeLinked data   radical change
Linked data radical changeRichard Wallis
 
The Web of Data is Our Opportunity
The Web of Data is Our OpportunityThe Web of Data is Our Opportunity
The Web of Data is Our Opportunity
Richard Wallis
 
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & Museums
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & MuseumsALIAOnline Practical Linked (Open) Data for Libraries, Archives & Museums
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & MuseumsJon Voss
 
Open access e repositories kelaniya workshop final
Open access e repositories kelaniya workshop finalOpen access e repositories kelaniya workshop final
Open access e repositories kelaniya workshop final
Jagath Arachchige
 
It19 20140721 linked data personal perspective
It19 20140721 linked data personal perspectiveIt19 20140721 linked data personal perspective
It19 20140721 linked data personal perspective
Janifer Gatenby
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Michael Hausenblas
 
Metadata Training for Staff and Librarians for the New Data Environment
Metadata Training for Staff and Librarians for the New Data EnvironmentMetadata Training for Staff and Librarians for the New Data Environment
Metadata Training for Staff and Librarians for the New Data Environment
Diane Hillmann
 
Linked Data Snowball, or Why We Need Reconciliation
Linked Data Snowball, or Why We Need ReconciliationLinked Data Snowball, or Why We Need Reconciliation
Linked Data Snowball, or Why We Need Reconciliation
Robert Sanderson
 
Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013
Herbert Van de Sompel
 
Introduction to RDF
Introduction to RDFIntroduction to RDF
Introduction to RDF
Pedro Szekely
 
Thompson 6-jun15-final
Thompson 6-jun15-finalThompson 6-jun15-final
Development of Semantic Web based Disaster Management System
Development of Semantic Web based Disaster Management SystemDevelopment of Semantic Web based Disaster Management System
Development of Semantic Web based Disaster Management System
NIT Durgapur
 
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW
 
Linked Data Implementations—Who, What and Why?
Linked Data Implementations—Who, What and Why?Linked Data Implementations—Who, What and Why?
Linked Data Implementations—Who, What and Why?
OCLC
 

What's hot (20)

NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
NISO/DCMI Webinar: Cooperative Authority Control: The Virtual International A...
 
Open Data - Principles and Techniques
Open Data - Principles and TechniquesOpen Data - Principles and Techniques
Open Data - Principles and Techniques
 
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
NISO/DCMI Webinar: Schema.org and Linked Data: Complementary Approaches to Pu...
 
Exploring the Semantic Web
Exploring the Semantic WebExploring the Semantic Web
Exploring the Semantic Web
 
Linked Data as an enabling framework for resource discovery across libraries,...
Linked Data as an enabling framework for resource discovery across libraries,...Linked Data as an enabling framework for resource discovery across libraries,...
Linked Data as an enabling framework for resource discovery across libraries,...
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Linked data radical change
Linked data   radical changeLinked data   radical change
Linked data radical change
 
The Web of Data is Our Opportunity
The Web of Data is Our OpportunityThe Web of Data is Our Opportunity
The Web of Data is Our Opportunity
 
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & Museums
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & MuseumsALIAOnline Practical Linked (Open) Data for Libraries, Archives & Museums
ALIAOnline Practical Linked (Open) Data for Libraries, Archives & Museums
 
Open access e repositories kelaniya workshop final
Open access e repositories kelaniya workshop finalOpen access e repositories kelaniya workshop final
Open access e repositories kelaniya workshop final
 
It19 20140721 linked data personal perspective
It19 20140721 linked data personal perspectiveIt19 20140721 linked data personal perspective
It19 20140721 linked data personal perspective
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Metadata Training for Staff and Librarians for the New Data Environment
Metadata Training for Staff and Librarians for the New Data EnvironmentMetadata Training for Staff and Librarians for the New Data Environment
Metadata Training for Staff and Librarians for the New Data Environment
 
Linked Data Snowball, or Why We Need Reconciliation
Linked Data Snowball, or Why We Need ReconciliationLinked Data Snowball, or Why We Need Reconciliation
Linked Data Snowball, or Why We Need Reconciliation
 
Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013
 
Introduction to RDF
Introduction to RDFIntroduction to RDF
Introduction to RDF
 
Thompson 6-jun15-final
Thompson 6-jun15-finalThompson 6-jun15-final
Thompson 6-jun15-final
 
Development of Semantic Web based Disaster Management System
Development of Semantic Web based Disaster Management SystemDevelopment of Semantic Web based Disaster Management System
Development of Semantic Web based Disaster Management System
 
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
IWMW 2003: Semantic Web Technologies for UK HE and FE Institutions (Part 2)
 
Linked Data Implementations—Who, What and Why?
Linked Data Implementations—Who, What and Why?Linked Data Implementations—Who, What and Why?
Linked Data Implementations—Who, What and Why?
 

Viewers also liked

A Computational Space for the Web of Things
A Computational Space for the Web of ThingsA Computational Space for the Web of Things
A Computational Space for the Web of Things
Simon Mayer
 
RESTful Triple Spaces of Things
RESTful Triple Spaces of ThingsRESTful Triple Spaces of Things
RESTful Triple Spaces of Things
Open University, KMi
 
Fortuna 2012 physical_mashup_artificial_intelligence
Fortuna 2012 physical_mashup_artificial_intelligenceFortuna 2012 physical_mashup_artificial_intelligence
Fortuna 2012 physical_mashup_artificial_intelligencecarolninap
 
Open Objects on WoT 2013
Open Objects on WoT 2013Open Objects on WoT 2013
Open Objects on WoT 2013
Paulo Ricca
 
Fortuna 2012 metadata_management_web_of_things
Fortuna 2012 metadata_management_web_of_thingsFortuna 2012 metadata_management_web_of_things
Fortuna 2012 metadata_management_web_of_thingscarolninap
 
Trendy service discovery protocol at WoT 2012
Trendy service discovery protocol at WoT 2012Trendy service discovery protocol at WoT 2012
Trendy service discovery protocol at WoT 2012
Talal Butt
 
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
Christophe Debruyne
 

Viewers also liked (7)

A Computational Space for the Web of Things
A Computational Space for the Web of ThingsA Computational Space for the Web of Things
A Computational Space for the Web of Things
 
RESTful Triple Spaces of Things
RESTful Triple Spaces of ThingsRESTful Triple Spaces of Things
RESTful Triple Spaces of Things
 
Fortuna 2012 physical_mashup_artificial_intelligence
Fortuna 2012 physical_mashup_artificial_intelligenceFortuna 2012 physical_mashup_artificial_intelligence
Fortuna 2012 physical_mashup_artificial_intelligence
 
Open Objects on WoT 2013
Open Objects on WoT 2013Open Objects on WoT 2013
Open Objects on WoT 2013
 
Fortuna 2012 metadata_management_web_of_things
Fortuna 2012 metadata_management_web_of_thingsFortuna 2012 metadata_management_web_of_things
Fortuna 2012 metadata_management_web_of_things
 
Trendy service discovery protocol at WoT 2012
Trendy service discovery protocol at WoT 2012Trendy service discovery protocol at WoT 2012
Trendy service discovery protocol at WoT 2012
 
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
Towards a Project Centric Metadata Model and Lifecycle for Ontology Mapping G...
 

Similar to What is Linked Data?

Publishing and Using Linked Open Data - Day 1
Publishing and Using Linked Open Data - Day 1 Publishing and Using Linked Open Data - Day 1
Publishing and Using Linked Open Data - Day 1
Richard Urban
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.org
Richard Wallis
 
Open data and linked data
Open data and linked dataOpen data and linked data
Open data and linked data
Marie Gustafsson Friberger
 
Web of Data Usage Mining
Web of Data Usage MiningWeb of Data Usage Mining
Web of Data Usage Mining
Markus Luczak-Rösch
 
ISWC GoodRelations Tutorial Part 2
ISWC GoodRelations Tutorial Part 2ISWC GoodRelations Tutorial Part 2
ISWC GoodRelations Tutorial Part 2
Martin Hepp
 
GoodRelations Tutorial Part 2
GoodRelations Tutorial Part 2GoodRelations Tutorial Part 2
GoodRelations Tutorial Part 2
guestecacad2
 
Open semantic linked data
Open semantic linked dataOpen semantic linked data
Open semantic linked data
DatiGovIT
 
LOD/LAM Presentation
LOD/LAM PresentationLOD/LAM Presentation
LOD/LAM Presentation
Hafabe
 
Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2
Richard Urban
 
TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22
jodischneider
 
Linked Data
Linked DataLinked Data
Linked Data
Anja Jentzsch
 
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...eswcsummerschool
 
Transmission6 - Publishing Linked Data
Transmission6 - Publishing Linked DataTransmission6 - Publishing Linked Data
Transmission6 - Publishing Linked Data
Bill Roberts
 
Publishing and Using Linked Open Data - Day 4
Publishing and Using Linked Open Data - Day 4Publishing and Using Linked Open Data - Day 4
Publishing and Using Linked Open Data - Day 4
Richard Urban
 
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked DataIFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
Lars G. Svensson
 
Illuminating DSpace's Linked Data Support
Illuminating DSpace's Linked Data SupportIlluminating DSpace's Linked Data Support
Illuminating DSpace's Linked Data Support
Pascal-Nicolas Becker
 
Publishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesPublishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesNikolaos Konstantinou
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
Laura Po
 
It summit2015
It summit2015It summit2015
It summit2015
kevin_donovan
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Cory Lampert
 

Similar to What is Linked Data? (20)

Publishing and Using Linked Open Data - Day 1
Publishing and Using Linked Open Data - Day 1 Publishing and Using Linked Open Data - Day 1
Publishing and Using Linked Open Data - Day 1
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.org
 
Open data and linked data
Open data and linked dataOpen data and linked data
Open data and linked data
 
Web of Data Usage Mining
Web of Data Usage MiningWeb of Data Usage Mining
Web of Data Usage Mining
 
ISWC GoodRelations Tutorial Part 2
ISWC GoodRelations Tutorial Part 2ISWC GoodRelations Tutorial Part 2
ISWC GoodRelations Tutorial Part 2
 
GoodRelations Tutorial Part 2
GoodRelations Tutorial Part 2GoodRelations Tutorial Part 2
GoodRelations Tutorial Part 2
 
Open semantic linked data
Open semantic linked dataOpen semantic linked data
Open semantic linked data
 
LOD/LAM Presentation
LOD/LAM PresentationLOD/LAM Presentation
LOD/LAM Presentation
 
Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2Publishing and Using Linked Open Data - Day 2
Publishing and Using Linked Open Data - Day 2
 
TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22TPDL2013 tutorial linked data for digital libraries 2013-10-22
TPDL2013 tutorial linked data for digital libraries 2013-10-22
 
Linked Data
Linked DataLinked Data
Linked Data
 
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
ESWC SS 2013 - Tuesday Tutorial 1 Maribel Acosta and Barry Norton: Providing ...
 
Transmission6 - Publishing Linked Data
Transmission6 - Publishing Linked DataTransmission6 - Publishing Linked Data
Transmission6 - Publishing Linked Data
 
Publishing and Using Linked Open Data - Day 4
Publishing and Using Linked Open Data - Day 4Publishing and Using Linked Open Data - Day 4
Publishing and Using Linked Open Data - Day 4
 
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked DataIFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
 
Illuminating DSpace's Linked Data Support
Illuminating DSpace's Linked Data SupportIlluminating DSpace's Linked Data Support
Illuminating DSpace's Linked Data Support
 
Publishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesPublishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web Technologies
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
 
It summit2015
It summit2015It summit2015
It summit2015
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
 

More from Christophe Debruyne

BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KGBURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
Christophe Debruyne
 
One year of DALIDA Data Literacy Workshops for Adults: a Report
One year of DALIDA Data Literacy Workshops for Adults: a ReportOne year of DALIDA Data Literacy Workshops for Adults: a Report
One year of DALIDA Data Literacy Workshops for Adults: a Report
Christophe Debruyne
 
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologieProjet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
Christophe Debruyne
 
Knowledge Graphs: Concept, mogelijkheden en aandachtspunten
Knowledge Graphs: Concept, mogelijkheden en aandachtspuntenKnowledge Graphs: Concept, mogelijkheden en aandachtspunten
Knowledge Graphs: Concept, mogelijkheden en aandachtspunten
Christophe Debruyne
 
Reusable SHACL Constraint Components for Validating Geospatial Linked Data
Reusable SHACL Constraint Components for Validating Geospatial Linked DataReusable SHACL Constraint Components for Validating Geospatial Linked Data
Reusable SHACL Constraint Components for Validating Geospatial Linked Data
Christophe Debruyne
 
Hidden Amongst the Data: the Beyond 2022 Knowledge Graph
Hidden Amongst the Data: the Beyond 2022 Knowledge GraphHidden Amongst the Data: the Beyond 2022 Knowledge Graph
Hidden Amongst the Data: the Beyond 2022 Knowledge Graph
Christophe Debruyne
 
Facilitating Data Curation: a Solution Developed in the Toxicology Domain
Facilitating Data Curation: a Solution Developed in the Toxicology DomainFacilitating Data Curation: a Solution Developed in the Toxicology Domain
Facilitating Data Curation: a Solution Developed in the Toxicology Domain
Christophe Debruyne
 
Using Maps for Interlinking Geospatial Linked Data
Using Maps for Interlinking Geospatial Linked DataUsing Maps for Interlinking Geospatial Linked Data
Using Maps for Interlinking Geospatial Linked Data
Christophe Debruyne
 
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
Christophe Debruyne
 
Towards Generating Policy-compliant Datasets (poster)
Towards GeneratingPolicy-compliant Datasets (poster)Towards GeneratingPolicy-compliant Datasets (poster)
Towards Generating Policy-compliant Datasets (poster)
Christophe Debruyne
 
Towards Generating Policy-compliant Datasets
Towards Generating Policy-compliant DatasetsTowards Generating Policy-compliant Datasets
Towards Generating Policy-compliant Datasets
Christophe Debruyne
 
Generating Executable Mappings from RDF Data Cube Data Structure Definitions
Generating Executable Mappings from RDF Data Cube Data Structure DefinitionsGenerating Executable Mappings from RDF Data Cube Data Structure Definitions
Generating Executable Mappings from RDF Data Cube Data Structure Definitions
Christophe Debruyne
 
Uplift – Generating RDF datasets from non-RDF data with R2RML
Uplift – Generating RDF datasets from non-RDF data with R2RMLUplift – Generating RDF datasets from non-RDF data with R2RML
Uplift – Generating RDF datasets from non-RDF data with R2RML
Christophe Debruyne
 
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
Christophe Debruyne
 
Client-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
Client-side Processing of GeoSPARQL Functions with Triple Pattern FragmentsClient-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
Client-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
Christophe Debruyne
 
Serving Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked DataServing Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked Data
Christophe Debruyne
 
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
Christophe Debruyne
 
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML MappingsR2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
Christophe Debruyne
 
Creating and Consuming Metadata from Transcribed Historical Vital Records for...
Creating and Consuming Metadata from Transcribed Historical Vital Records for...Creating and Consuming Metadata from Transcribed Historical Vital Records for...
Creating and Consuming Metadata from Transcribed Historical Vital Records for...
Christophe Debruyne
 
Using Semantic Technologies to Create Virtual Families from Historical Vital ...
Using Semantic Technologies to Create Virtual Families from Historical Vital ...Using Semantic Technologies to Create Virtual Families from Historical Vital ...
Using Semantic Technologies to Create Virtual Families from Historical Vital ...
Christophe Debruyne
 

More from Christophe Debruyne (20)

BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KGBURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
BURPing Through RML Test Cases (presented at KGC Workshop @ ESWC 2024)KG
 
One year of DALIDA Data Literacy Workshops for Adults: a Report
One year of DALIDA Data Literacy Workshops for Adults: a ReportOne year of DALIDA Data Literacy Workshops for Adults: a Report
One year of DALIDA Data Literacy Workshops for Adults: a Report
 
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologieProjet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
Projet TOXIN : Des graphes de connaissances pour la recherche en toxicologie
 
Knowledge Graphs: Concept, mogelijkheden en aandachtspunten
Knowledge Graphs: Concept, mogelijkheden en aandachtspuntenKnowledge Graphs: Concept, mogelijkheden en aandachtspunten
Knowledge Graphs: Concept, mogelijkheden en aandachtspunten
 
Reusable SHACL Constraint Components for Validating Geospatial Linked Data
Reusable SHACL Constraint Components for Validating Geospatial Linked DataReusable SHACL Constraint Components for Validating Geospatial Linked Data
Reusable SHACL Constraint Components for Validating Geospatial Linked Data
 
Hidden Amongst the Data: the Beyond 2022 Knowledge Graph
Hidden Amongst the Data: the Beyond 2022 Knowledge GraphHidden Amongst the Data: the Beyond 2022 Knowledge Graph
Hidden Amongst the Data: the Beyond 2022 Knowledge Graph
 
Facilitating Data Curation: a Solution Developed in the Toxicology Domain
Facilitating Data Curation: a Solution Developed in the Toxicology DomainFacilitating Data Curation: a Solution Developed in the Toxicology Domain
Facilitating Data Curation: a Solution Developed in the Toxicology Domain
 
Using Maps for Interlinking Geospatial Linked Data
Using Maps for Interlinking Geospatial Linked DataUsing Maps for Interlinking Geospatial Linked Data
Using Maps for Interlinking Geospatial Linked Data
 
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
Linked Data Publication and Interlinking Research within the SFI funded ADAPT...
 
Towards Generating Policy-compliant Datasets (poster)
Towards GeneratingPolicy-compliant Datasets (poster)Towards GeneratingPolicy-compliant Datasets (poster)
Towards Generating Policy-compliant Datasets (poster)
 
Towards Generating Policy-compliant Datasets
Towards Generating Policy-compliant DatasetsTowards Generating Policy-compliant Datasets
Towards Generating Policy-compliant Datasets
 
Generating Executable Mappings from RDF Data Cube Data Structure Definitions
Generating Executable Mappings from RDF Data Cube Data Structure DefinitionsGenerating Executable Mappings from RDF Data Cube Data Structure Definitions
Generating Executable Mappings from RDF Data Cube Data Structure Definitions
 
Uplift – Generating RDF datasets from non-RDF data with R2RML
Uplift – Generating RDF datasets from non-RDF data with R2RMLUplift – Generating RDF datasets from non-RDF data with R2RML
Uplift – Generating RDF datasets from non-RDF data with R2RML
 
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
A Lightweight Approach to Explore, Enrich and Use Data with a Geospatial Dime...
 
Client-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
Client-side Processing of GeoSPARQL Functions with Triple Pattern FragmentsClient-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
Client-side Processing of GeoSPARQL Functions with Triple Pattern Fragments
 
Serving Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked DataServing Ireland's Geospatial Information as Linked Data
Serving Ireland's Geospatial Information as Linked Data
 
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
Serving Ireland's Geospatial Information as Linked Data (ISWC 2016 Poster)
 
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML MappingsR2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
R2RML-F: Towards Sharing and Executing Domain Logic in R2RML Mappings
 
Creating and Consuming Metadata from Transcribed Historical Vital Records for...
Creating and Consuming Metadata from Transcribed Historical Vital Records for...Creating and Consuming Metadata from Transcribed Historical Vital Records for...
Creating and Consuming Metadata from Transcribed Historical Vital Records for...
 
Using Semantic Technologies to Create Virtual Families from Historical Vital ...
Using Semantic Technologies to Create Virtual Families from Historical Vital ...Using Semantic Technologies to Create Virtual Families from Historical Vital ...
Using Semantic Technologies to Create Virtual Families from Historical Vital ...
 

Recently uploaded

Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
Fwdays
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 

Recently uploaded (20)

Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 

What is Linked Data?

  • 1. What is Linked Data? Linked Data for Libraries, 6th Nov 2014, Royal Irish Academy Dr. Christophe Debruyne Digital Repository of Ireland – Royal Irish Academy Insight Centre of Data Analy<cs – NUI Galway Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 2. What is Linked Data? • Linked Data started off as a initiative called the Linking Open Data (LOD) project. • Linked Data is a global initiative to publish and interlink structured data on the Web using a combination of well established technologies. • Uniform Resource Identifiers – to name things; • Resource Description Framework – to represent things; • HTTP infrastructure – to obtain those representations. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 3. Web of Documents vs. Web of Data • The Web of Documents were created by humans for humans; the links between documents bore little meaning for machines and documents provided little structured information. • Structured information can be found on the Web – such as XML, CSV, etc. – but, … • How do we link data rather than documents, and create a global “database” of information? Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 4. Towards a Web of Documents • We need appropriate methods (guidelines) and Linked Data for Librarians – November 6, 2014 – Royal Irish Academy standards. • Tim Berners-Lee formulated four rules for creating and publishing Linked Data on the Web.
  • 5. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy The four principles Number 1 “Use URIs as names for things.”
  • 6. (1) Use URIs to name things • Use Uniform Resource Identifiers (URIs) to name everything you need to describe on the Web • People, geographical locations, books, … • Events, emotion, religion, … Linked Data for Librarians – November 6, 2014 – Royal Irish Academy • Examples • http://dbpedia.org/resource/James_Joyce • ftp://example.org/file.txt • urn:ISSN:1535-3613 • But …
  • 7. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy The four principles Number 1 “Use URIs as names for things.” Number 2 “Use HTTP URIs so that people can look up those names.”
  • 8. (2) Use HTTP URIs to look up those names • HTTP URIs allow one to reuse the existing HTTP infrastructure to return something when one performs an HTTP GET request. • One can for instance put the HTTP URI in a browser’s address bar and – hopefully – get a result. • http://dbpedia.org/resource/James_Joyce Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 9. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy The four principles Number 1 “Use URIs as names for things.” Number 2 “Use HTTP URIs so that people can look up those names.” Number 3 “When someone looks up a URI, provide useful informa<on, using the standards (RDF, SPARQL)”
  • 10. (3) Provide useful Information for URI look-ups • When entities are identified by URIs that use the http:// scheme, these entities can be looked up simply by dereferencing the URI over the HTTP protocol. • Simple, standardized mechanism for retrieving resources via these URIs. • Provide information suitable for the “consumer” • Humans rather see HTML pages, PDFs, pictures, … • Machines want machine-readable formats such as RDF Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 11. Resource Description Framework • RDF is not (really) a language but a model (!!!) • RDF is a W3C recommendation • RDF is designed to be read by computers • RDF is for describing resources on the Web in terms of triples (subject – predicate – object) • RDF uses URIs to identify and reference resources on Linked Data for Librarians – November 6, 2014 – Royal Irish Academy the Web • RDF/XML is just one way of serializing RDF • Others are Turtle, N3, etc.
  • 12. Resource Description Framework <?xml version="1.0" encoding="utf-8" ?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:foaf="http://xmlns.com/foaf/0.1/" > <rdf:Description rdf:about="http://dbpedia.org/resource/James_Joyce"> <foaf:name>Joyce, James Augustine Aloysius</foaf:name> <foaf:based_near rdf:resource="http://dbpedia.org/resource/Zurich" /> Linked Data for Librarians – November 6, 2014 – Royal Irish Academy </rdf:Description> </rdf:RDF>
  • 13. foaf:name Linked Data for Librarians – November 6, 2014 – Royal Irish Academy foaf:based_near
  • 14. Ontologies • An ontology is an “explicit [formal] specification of a [shared] conceptualization.” (Gruber, 1993) • RDF is the data model. • RDF, RDFS and OWL are ontology languages. • RDF à Declare types and relations; • RDFS à Declare type- & role hierarchies, domains and rages, etc. • OWL à Properties of relations, Disjointness, etc. • Popular ontologies for instance are Friend-of-a-Friend (FOAF), Simple Knowledge Organization System (SKOS), Dublin Core terms • Ontologies allows us to describe resources. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 15. Information resources and non-information resources • Information resources are documents – referred to by a URI – that describe non-information resources – named with a URI – that represent things such as cars, people, etc. • The NIR http://dbpedia.org/resource/James_Joyce is described by the following IRs: • The web page http://dbpedia.org/page/James_Joyce • The RDF doc http://dbpedia.org/data/James_Joyce • Either is returned depending on what you need. How? Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 16. Content negotiation – part of the HTTP infrastructure Resource identifiers: • HTTP URIs not only as a name, but also for a Web look-up. • Non-information resources can have multiple representations: HTML, RDF/XML, ... HTTP URI dereferencing: • To dereference → “To obtain the address of a data item held in another location from a pointer” • URI pointing to a IR returns the representation. • URI pointing to a NIR returns a redirect to an IR describing that NIR. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 17. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy Content negotiation Image from hSp://www.w3.org/TR/swbp-­‐vocab-­‐pub/
  • 18. What should be returned? • RDF should be at least be represented as RDF/XML. • All RDF triples with the NIR’s URI as the subject in the triples. Triples where the NIR is a object are optional, but nice to have. • Descriptions about related resources and metadata (e.g. publisher, creation date, etc.) should be attached to the information resource. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 19. Content negotiation in Linked Logainm Linked Logainm is a collaborative project undertaken by the DRI, Insight @ NUI Galway, Fiontar at DCU, the National Library of Ireland and the Placenames Branch of the Department of Arts, Heritage and the Gaeltacht. The Linked Logainm project has created a new open dataset, which allows Irish place names to be linked across the world by cutting edge technologies developed in Ireland. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 20. Content negotiation in Linked Logainm Westport is identified by the URI http://data.logainm.ie/place/132920 $ curl -H "Accept:text/rdf+n3" http:// data.logainm.ie/place/13292 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix spatial: <http://geovocab.org/spatial#> . <http://data.logainm.ie/place/132920> rdf:type spatial:Feature . @prefix ns2: <http://data.logainm.ie/category/> . <http://data.logainm.ie/place/132920> rdf:type ns2:B . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix ns4: <http://linkedgeodata.org/triplify/> . <http://data.logainm.ie/place/132920> owl:sameAs ns4:node52244000 , <http://id.worldcat.org/fast/1210744> , <http://sws.geonames.org/2960970/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . <http://data.logainm.ie/place/132920> foaf:name "Westport"@en … Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 21. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy The four principles Number 1 “Use URIs as names for things.” Number 2 “Use HTTP URIs so that people can look up those names.” Number 3 “When someone looks up a URI, provide useful informa<on, using the standards (RDF, SPARQL)” Number 4 “Include links to other URIs, so that they can discover more things.”
  • 22. (4) Include links to other URIs • Not only within the same dataset <http://dbpedia.org/resource/James_Joyce> dbpedia-owl:birthPlace <http://dbpedia.org/resource/Dublin"> . • But also across datasets <http://dbpedia.org/page/Dublin> owl:sameAs <http://sws.geonames.org/7778677/> . Linked Data for Librarians – November 6, 2014 – Royal Irish Academy
  • 23. Example of linking across datasets dbpedia-­‐owl:popula<onTotal gn:popula<on gn:name Linked Data for Librarians – November 6, 2014 – Royal Irish Academy hSp:// dbpedia.org/ resource/Dublin Dublin rdfs:label 527612 owl:sameAs hSp:// sws.geonames.org /7778677/ hSp:// sws.geonames.org /7778677/ 527612 Dublin City
  • 24. Linked Data for Librarians – November 6, 2014 Linking Open Data cloud diagram 2014, by Max Schmachten b–e Rrogy,a lC Irhisrhi sA<caadnem Byi zer, Anja Jentzsch and Richard Cyganiak. hSp://lod-­‐cloud.net/
  • 25. References • Berners-Lee, T. (2006). Linked Data - Design Issues. Retrieved October 20 2014, http://www.w3.org/ DesignIssues/LinkedData.html • Gruber, T. R. (1993) Towards principles for the design of ontologies used for knowledge sharing. In Guarino, N. and Poli, R., eds. Formal Ontology in Conceptual Analysis and Knowledge representation. Kluwer Academic Publishers, Deventer, The Netherlands. • Hitzler, P., Krotzsch, M., and Rudolph, S. (2010) Foundations of Semantic Web Technologies. CRC Press, Boca Raton, FL, the US. • van Hooland, S. and Verborgh, R. (2014) Linked Data for Libraries, Archives and Museums. How to clean, link and publish your metadata. Facet Publishing, London, The UK. Linked Data for Librarians – November 6, 2014 – Royal Irish Academy