SlideShare une entreprise Scribd logo
1  sur  33
Introduction to Linked Data
Linked Data: what cataloguers need to know #cigld
CILIP Cataloguing and Indexing Group (CIG)
20 February 2015
Thomas Meehan
tom@aurochs.org @orangeaurochs
Linked Open Data
Data
Linked
Open
linked open DATA
245 00 $a Models for decision :
$b a conference under the auspices of the United Kingdom
Automation Council organised by the British Computer
Society and the Operational Research Society /
$c edited by C.M. Berners-Lee.
260 __ $a London :
$b English Universities Press,
$c 1965.
300 __ $a x, 149 p. :
$b ill. ;
$c 23 cm.
504 __ $a Includes bibliographical references.
700 1_ $a Berners-Lee, C. M.
LINKED open data..
…LINKED open data
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr id="bib-author-row">
<th>Author:</th>
<td id="bib-author-cell">
<a href="/search?q=au%3ABerners-Lee%2C+C.+M.&amp;qt=hot_author" title="Search for more by this
author">C M Berners-Lee</a>;
<a href="/search?q=au%3ABritish+Computer+Society.&amp;qt=hot_author" title="Search for more by
this author">British Computer Society.</a>;
<a href="/search?q=au%3AInstitution+of+Electrical+Engineers.&amp;qt=hot_author" title="Search for
more by this author">Institution of Electrical Engineers.</a>;
<a href="/search?q=au%3AOperational+Research+Society.&amp;qt=hot_author" title="Search for more
by this author">Operational Research Society.</a?
</td>
</tr>
<tr id="bib-publisher-row">
<th>Publisher:</th>
<td id="bib-publisher-cell">London : English Universities Press, [1965]</td>
</tr>
…
</table>
linked OPEN data
The Web of Data
• Use URIs as names for things
• Use HTTP URIs so that people can look up
those names.
• When someone looks up a URI, provide useful
information, using the standards (RDF,
SPARQL)
• Include links to other URIs so that they can
discover more things.
Tim Berners-Lee (2006)
English sentence
Brideshead Revisited was written by Evelyn Waugh.
Entities and Relationship
Brideshead revisited created by Evelyn Waugh
Adding URIs: Brideshead revisited
http://id.loc.gov/authorities/names/no97080492
created by Evelyn Waugh
Adding URIs: Waugh
http://id.loc.gov/authorities/names/no97080492
created by
http://id.loc.gov/authorities/names/n79049248
Adding URIs: creator
http://id.loc.gov/authorities/names/no970804
92
http://purl.org/dc/terms/creator
http://id.loc.gov/authorities/names/n7904924
8
RDF Statement
<http://id.loc.gov/authorities/names/no97080492>
<http://purl.org/dc/terms/creator>
<http://id.loc.gov/authorities/names/n79049248> .
RDF (Turtle)
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix dct: <http://purl.org/dc/terms/> .
lc_names:no97080492 dct:creator lc_names:n79049248 .
Brideshead Revisited
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix lc_languages: <http://id.loc.gov/vocabulary/languages> .
@prefix dct: <http://purl.org/dc/terms/> .
lc_names:no97080492 dct:creator lc_names:n79049248 ;
dct:created "1945" ;
dct:extent "1 volume" ;
dct:language lc_languages:eng ;
dct:title "Brideshead revisited" ;
dct:type <http://purl.org/dc/dcmitype/Text> .
Brideshead Revisited
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix lc_languages: <http://id.loc.gov/vocabulary/languages/> .
@prefix dct: <http://purl.org/dc/terms/> .
lc_names:no97080492 dct:creator lc_names:n79049248 ;
dct:created "1945" ;
dct:extent "1 volume" ;
dct:language lc_languages:eng ;
dct:title "Brideshead revisited" ;
dct:type <http://purl.org/dc/dcmitype/Text> .
LC Name Authority for Waugh
(excerpt)
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix mads: <http://www.loc.gov/mads/rdf/v1#> .
@prefix viaf: <http://viaf.org/viaf/sourceID/> .
lc_names:n79049248 rdf:type mads:PersonalName ;
rdf:type mads:Authority ;
mads:authoritativeLabel "Waugh, Evelyn, 1903-1966"@en ;
mads:hasExactExternalAuthority viaf:68937142 .
RDF Serialisations
N Triples
<http://id.loc.gov/authorities/names/n79049248> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#PersonalName>.
<http://id.loc.gov/authorities/names/n79049248> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#Authority>.
<http://id.loc.gov/authorities/names/n79049248> <http://www.loc.gov/mads/rdf/v1#authoritativeLabel> "Waugh, Evelyn, 1903-1966"@en.
<http://id.loc.gov/authorities/names/n79049248> <http://www.loc.gov/mads/rdf/v1#hasExactExternalAuthority> <http://viaf.org/viaf/sourceID/68937142>.
RDF Serializations
Turtle and N3
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix mads: <http://www.loc.gov/mads/rdf/v1#> .
@prefix viaf: <http://viaf.org/viaf/sourceID/> .
lc_names:n79049248 rdf:type mads:PersonalName ;
rdf:type mads:Authority ;
mads:authoritativeLabel "Waugh, Evelyn, 1903-1966"@en ;
mads:hasExactExternalAuthority viaf:68937142 .
RDF Serialisation
RDF/XML
<?xml version="1.0"?>
<rdf:RDF xmlns:lc_names="http://id.loc.gov/authorities/names/" xmlns:mads="http://www.loc.gov/mads/rdf/v1#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:viaf="http://viaf.org/viaf/sourceID/">
<mads:PersonalName rdf:about="http://id.loc.gov/authorities/names/n79049248">
<rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Authority" />
<mads:authoritativeLabel xml:lang="en">Waugh, Evelyn, 1903-1966</mads:authoritativeLabel>
<mads:hasExactExternalAuthority rdf:resource="http://viaf.org/viaf/sourceID/68937142" />
</mads:PersonalName>
</rdf:RDF>
RDF Serialisation
RDF/JSON
{
"http://id.loc.gov/authorities/names/n79049248": {
"http://www.loc.gov/mads/rdf/v1#hasExactExternalAuthority": [
{
"type": "uri",
"value": "http://viaf.org/viaf/sourceID/68937142"
}
],
"http://www.w3.org/1999/02/22-rdf-syntax-ns#type": [
{
"type": "uri",
"value": "http://www.loc.gov/mads/rdf/v1#PersonalName"
},
{
"type": "uri",
"value": "http://www.loc.gov/mads/rdf/v1#Authority"
}
],
"http://www.loc.gov/mads/rdf/v1#authoritativeLabel": [
{
"lang": "en",
"type": "literal",
"value": "Waugh, Evelyn, 1903-1966"
}
]
}
}
RDF Serialisation
RDFa
<div xmlns="http://www.w3.org/1999/xhtml"
prefix="
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
mads: http://www.loc.gov/mads/rdf/v1#
rdfs: http://www.w3.org/2000/01/rdf-schema#"
>
<div typeof="mads:PersonalName"
about="http://id.loc.gov/authorities/names/n79049248">
<div rel="rdf:type" resource="http://www.loc.gov/mads/rdf/v1#Authority"></div>
<div property="mads:authoritativeLabel" xml:lang="en" content="Waugh, Evelyn,
1903-1966"></div>
<div rel="mads:hasExactExternalAuthority"
resource="http://viaf.org/viaf/sourceID/68937142"></div>
</div>
</div>
Microdata, RDFa, Schema.org
OCLC Worldcat uses embedded Schema.org:
http://www.worldcat.org/oclc/221944758
Schema.org RDFa on Worldcat
Schema.org RDFa on Worldcat
Schema.org RDFa on Worldcat
<div xmlns="http://www.w3.org/1999/xhtml" id="microdata" prefix="xml: http://www.w3.org/XML/1998/namespace skos: http://www.w3.org/2004/02/skos/core# library: http://purl.org/library/ gen-ont: http://www.w3.org/2006/gen/ont# pto:
http://www.productontology.org/id/ madsrdf: http://www.loc.gov/mads/rdf/v1# void: http://rdfs.org/ns/void# schema: http://schema.org/ oclc: http://www.worldcat.org/oclc/ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# umbel:
http://umbel.org/umbel# bibo: http://purl.org/ontology/bibo/ foaf: http://xmlns.com/foaf/0.1/ cc: http://creativecommons.org/ns# awol: http://bblfish.net/work/atom-owl/2006-06-06/# owl: http://www.w3.org/2002/07/owl# dct: http://purl.org/dc/terms/
blterms: http://www.bl.uk/schemas/bibliographic/blterms# rdfs: http://www.w3.org/2000/01/rdf-schema#"><div resource="http://www.worldcat.org/oclc/221944758" typeof="http://schema.org/Book"><<a
href="http://www.worldcat.org/oclc/221944758">http://www.worldcat.org/oclc/221944758</a>><table border="0" cellspacing="0"><tr><td><a href="http://purl.org/library/oclcnum">library:oclcnum</a></td><td>"<span
property="library:oclcnum">221944758</span>"</td></tr><tr><td><a href="http://purl.org/library/placeOfPublication">library:placeOfPublication</a></td><td><div property="library:placeOfPublication" typeof="http://schema.org/Place"><table border="0"
cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Place" property="rdf:type" resource="http://schema.org/Place">schema:Place</a></td></tr><tr><td><a
href="http://schema.org/Place">schema:name</a></td><td>"<span property="schema:name">London</span>"</td></tr></table></div></td></tr><tr><td><a href="http://purl.org/library/placeOfPublication">library:placeOfPublication</a></td><td><div
property="library:placeOfPublication" resource="http://id.loc.gov/vocabulary/countries/enk" typeof="http://schema.org/Country"><<a href="http://id.loc.gov/vocabulary/countries/enk">http://id.loc.gov/vocabulary/countries/enk</a>><table border="0"
cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Country" property="rdf:type"
resource="http://schema.org/Country">schema:Country</a></td></tr></table></div></td></tr><tr><td><a href="http://www.w3.org/2002/07/owl#sameAs">owl:sameAs</a></td><td><<a href="info:oclcnum/221944758" property="owl:sameAs"
resource="info:oclcnum/221944758">info:oclcnum/221944758</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Book" property="rdf:type"
resource="http://schema.org/Book">schema:Book</a></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" typeof="http://schema.org/Intangible"><table border="0" cellspacing="0"><tr><td><a
href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/subjects/sh85042288" property="madsrdf:isIdentifiedByAuthority"
resource="http://id.loc.gov/authorities/subjects/sh85042288">http://id.loc.gov/authorities/subjects/sh85042288</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible"
property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Electronic data
processing.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" resource="http://dewey.info/class/658.4033/" typeof="http://schema.org/Intangible"><<a
href="http://dewey.info/class/658.4033/">http://dewey.info/class/658.4033/</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible"
property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about"
resource="http://id.worldcat.org/fast/1081992" typeof="http://schema.org/Intangible"><<a href="http://id.worldcat.org/fast/1081992">http://id.worldcat.org/fast/1081992</a>><table border="0" cellspacing="0"><tr><td><a
href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a
href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Public administration--Data processing</span>"</td></tr></table></div></td></tr><tr><td><a
href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" resource="http://id.worldcat.org/fast/906956" typeof="http://schema.org/Intangible"><<a
href="http://id.worldcat.org/fast/906956">http://id.worldcat.org/fast/906956</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible"
property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Electronic data
processing</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" typeof="http://schema.org/Intangible"><table border="0" cellspacing="0"><tr><td><a
href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/subjects/sh2008110032" property="madsrdf:isIdentifiedByAuthority"
resource="http://id.loc.gov/authorities/subjects/sh2008110032">http://id.loc.gov/authorities/subjects/sh2008110032</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a
href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Public
administration--Data processing.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/149407214"
typeof="http://schema.org/Organization"><<a href="http://viaf.org/viaf/149407214">http://viaf.org/viaf/149407214</a>><table border="0" cellspacing="0"><tr><td><a
href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/names/n79056431" property="madsrdf:isIdentifiedByAuthority"
resource="http://id.loc.gov/authorities/names/n79056431">http://id.loc.gov/authorities/names/n79056431</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization"
property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">British Computer
Society.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/130073090" typeof="http://schema.org/Organization"><<a
href="http://viaf.org/viaf/130073090">http://viaf.org/viaf/130073090</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a
href="http://id.loc.gov/authorities/names/n85076053" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/names/n85076053">http://id.loc.gov/authorities/names/n85076053</a>></td></tr><tr><td><a
href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a
href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">Operational Research Society.</span>"</td></tr></table></div></td></tr><tr><td><a
href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/137135158" typeof="http://schema.org/Organization"><<a
href="http://viaf.org/viaf/137135158">http://viaf.org/viaf/137135158</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a
href="http://id.loc.gov/authorities/names/n79063901" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/names/n79063901">http://id.loc.gov/authorities/names/n79063901</a>></td></tr><tr><td><a
href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a
href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">Institution of Electrical Engineers.</span>"</td></tr></table></div></td></tr><tr><td><a
href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/36887201" typeof="http://schema.org/Person"><<a
href="http://viaf.org/viaf/36887201">http://viaf.org/viaf/36887201</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Person" property="rdf:type"
resource="http://schema.org/Person">schema:Person</a></td></tr><tr><td><a href="http://www.w3.org/2000/01/rdf-schema#label">rdfs:label</a></td><td>"<span property="rdfs:label">Berners-Lee, C.
M.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:datePublished</a></td><td>"<span property="schema:datePublished">1965</span>"</td></tr><tr><td><a
href="http://schema.org/Book">schema:inLanguage</a></td><td>"<span property="schema:inLanguage">en</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:name</a></td><td>"<span property="schema:name">Models for decision :
a conference under the auspices of the United Kingdom Automation Council organised by the British Computer Society and the Operational Research Society</span>"</td></tr><tr><td><a
href="http://schema.org/Book">schema:numberOfPages</a></td><td>"<span property="schema:numberOfPages">149</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:publisher</a></td><td><div property="schema:publisher"
typeof="http://schema.org/Organization"><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type"
resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">English Universities
Press</span>"</td></tr></table></div></td></tr></table></div></div>
Worldcat Schema.org data for a book
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix worldcat: <http://www.worldcat.org/oclc/> .
@prefix library: <http://purl.org/library/> .
@prefix viaf: <http://viaf.org/viaf/> .
@prefix lc_authorities: <http://id.loc.gov/authorities/names/> .
@prefix mads: <http://www.loc.gov/mads/rdf/v1#> .
worldcat:221944758
rdf:type schema:Book;
library:oclcnum "221944758";
schema:name "Models for decision : a conference under the
auspices of the United Kingdom Automation Council organised by
the British Computer Society and the Operational Research
Society";
library:placeOfPublication _:1;
schema:publisher _:4 .
schema:datePublished "[1965]";
schema:numberOfPages "149";
schema:contributor viaf:149407214;
schema:contributor viaf:130073090;
schema:contributor viaf:137135158;
schema:contributor viaf:36887201;
_:1
rdf:type schema:Place;
schema:name "London :" .
_:4
rdf:type schema:Organization;
schema:name "English Universities Press" .
viaf:149407214
rdf:type schema:Organization;
madsrdf:isIdentifiedByAuthority lc_authorities:n79056431;
schema:name "British Computer Society." .
viaf:130073090
rdf:type schema:Organization;
madsrdf:isIdentifiedByAuthority lc_authorities:n85076053;
schema:name "Operational Research Society." .
viaf:137135158
rdf:type schema:Organization;
madsrdf:isIdentifiedByAuthority lc_authorities:n79063901;
schema:name "Institution of Electrical Engineers." .
viaf:36887201
rdf:type schema:Person;
schema:name "Berners-Lee, C. M." .
Lots of Ways To Do It
@prefix schema: <http://schema.org/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix viaf: <http://viaf.org/viaf/> .
@prefix rdau: <http://rdaregistry.info/Elements/u/> .
@prefix cam: <http://data.lib.cam.ac.uk/id/entity/> .
@prefix bnb_person: <http://bnb.data.bl.uk/id/person/> .
@prefix foaf: <http://xmlns.com/foaf/spec/#> .
example:book0001 dct:creator cam:cambrdgedb_eeacef63d900c2acffc3daa400f3d4e4 .
example:book0001 dct:creator bnb_person:WaughEvelyn1903-1966 .
example:book0001 schema:creator viaf:68937142 .
example:book0001 rdau:#P60672 viaf:68937142 .
example:book0001 dct:creator lc_names:n79049248 .
example:book0001 dct:creator _:bnode001 .
_:bnode001 foaf:name "Waugh, Evelyn, 1903-1966" .
example:book0001 example:author example:author0001
Blank Nodes
@prefix lc_names: <http://id.loc.gov/authorities/names/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/spec/#> .
lc_names:no97080492 dct:creator _:bnode01 .
_:bnode01 a foaf:Person .
_:bnode01 foaf:name "Evelyn Waugh" .
lc_names:no97080492 dc:creator [
a foaf:Person ;
foaf:name "Evelyn Waugh"
] .
Introduction to Linked Data
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
cigld_intro dct:creator _:bnode001 ;
dct:created "2015" ;
dct:title "Introduction to Linked Data" ;
dct:isPartOf _:bnode003 .
_:bnode001 a foaf:person ;
foaf:name "Thomas Meehan" ;
foaf:mbox <tom@aurochs.org> ;
foaf:account _:bnode002 .
_:bnode002 a foaf:OnlineAccount ;
foaf:accountServiceHomepage "https://twitter.com/" ;
foaf:accountName "@orangeaurochs" .
_:bnode003 a bibo:Series ;
dct:title "Linked data: what cataloguers need to know" .
References
• Worldcat record for Models for decision / C.
Berners-Lee.
http://www.worldcat.org/title/models-for-
decision-a-conference-under-the-auspices-of-the-
united-kingdom-automation-council-organised-
by-the-british-computer-society-and-the-
operational-research-society/oclc/221944758
• What is open data? / The Open Data Institute.
http://theodi.org/guides/what-open-data
• Linked Data : design issues / Tim Berners-Lee.
http://www.w3.org/DesignIssues/LinkedData

Contenu connexe

Tendances

Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!
Armin Haller
 
It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011
Ross Singer
 

Tendances (20)

18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
18 ° Nexa Lunch Seminar - Lo stato dell'arte dei Linked Open Data italiani
 
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
SPARQL1.1 Tutorial, given in UChile by Axel Polleres (DERI)
 
Introduction to Linked Data
Introduction to Linked DataIntroduction to Linked Data
Introduction to Linked Data
 
Geography in Linked Ancient World Data
Geography in Linked Ancient World DataGeography in Linked Ancient World Data
Geography in Linked Ancient World Data
 
Terry Reese - The world beyond MARC: let's focus on asking the right questions
Terry Reese - The world beyond MARC: let's focus on asking the right questionsTerry Reese - The world beyond MARC: let's focus on asking the right questions
Terry Reese - The world beyond MARC: let's focus on asking the right questions
 
Where is the World is my Open Government Data?
Where is the World is my Open Government Data?Where is the World is my Open Government Data?
Where is the World is my Open Government Data?
 
Linked Data and Tools
Linked Data and ToolsLinked Data and Tools
Linked Data and Tools
 
when the link makes sense
when the link makes sensewhen the link makes sense
when the link makes sense
 
The Web, one huge database ...
The Web, one huge database ...The Web, one huge database ...
The Web, one huge database ...
 
Webofdata
WebofdataWebofdata
Webofdata
 
How much does $1.7 billion buy?
How much does $1.7 billion buy?How much does $1.7 billion buy?
How much does $1.7 billion buy?
 
PID Signposting Pattern
PID Signposting PatternPID Signposting Pattern
PID Signposting Pattern
 
Do the LOCAH-Motion: How to Make Bibliographic and Archival Linked Data
Do the LOCAH-Motion: How to Make Bibliographic and Archival Linked DataDo the LOCAH-Motion: How to Make Bibliographic and Archival Linked Data
Do the LOCAH-Motion: How to Make Bibliographic and Archival Linked Data
 
30° Nexa Lunch Seminar - Linked Data Platform vs real world
30° Nexa Lunch Seminar - Linked Data Platform vs real world30° Nexa Lunch Seminar - Linked Data Platform vs real world
30° Nexa Lunch Seminar - Linked Data Platform vs real world
 
(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LOD(Enterprise) Linked Data Platform a new standard to manage LOD
(Enterprise) Linked Data Platform a new standard to manage LOD
 
Consuming Linked Data SemTech2010
Consuming Linked Data SemTech2010Consuming Linked Data SemTech2010
Consuming Linked Data SemTech2010
 
DHWI Linked Open Data - Show and Tell
DHWI Linked Open Data - Show and TellDHWI Linked Open Data - Show and Tell
DHWI Linked Open Data - Show and Tell
 
Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!
 
It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011It's not rocket surgery - Linked In: ALA 2011
It's not rocket surgery - Linked In: ALA 2011
 
Publishing and Using Linked Data
Publishing and Using Linked DataPublishing and Using Linked Data
Publishing and Using Linked Data
 

Similaire à Introduction to Linked Data

Open (linked) bibliographic data edmund chamberlain (university of cambridge)
Open (linked) bibliographic data   edmund chamberlain (university of cambridge)Open (linked) bibliographic data   edmund chamberlain (university of cambridge)
Open (linked) bibliographic data edmund chamberlain (university of cambridge)
RDTF-Discovery
 
¿ARCHIVO?
¿ARCHIVO?¿ARCHIVO?
¿ARCHIVO?
ESPOL
 

Similaire à Introduction to Linked Data (20)

The Impact of Bibframe
The Impact of BibframeThe Impact of Bibframe
The Impact of Bibframe
 
Open (linked) bibliographic data edmund chamberlain (university of cambridge)
Open (linked) bibliographic data   edmund chamberlain (university of cambridge)Open (linked) bibliographic data   edmund chamberlain (university of cambridge)
Open (linked) bibliographic data edmund chamberlain (university of cambridge)
 
Open (linked) bibliographic data
Open (linked) bibliographic dataOpen (linked) bibliographic data
Open (linked) bibliographic data
 
¿ARCHIVO?
¿ARCHIVO?¿ARCHIVO?
¿ARCHIVO?
 
que hisciste el verano pasado
que hisciste el verano pasadoque hisciste el verano pasado
que hisciste el verano pasado
 
Lifting the Lid on Linked Data
Lifting the Lid on Linked DataLifting the Lid on Linked Data
Lifting the Lid on Linked Data
 
Dataincubator
DataincubatorDataincubator
Dataincubator
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic Web
 
What's Wrong With MARC?
What's Wrong With MARC?What's Wrong With MARC?
What's Wrong With MARC?
 
A Little SPARQL in your Analytics
A Little SPARQL in your AnalyticsA Little SPARQL in your Analytics
A Little SPARQL in your Analytics
 
What’s in a structured value?
What’s in a structured value?What’s in a structured value?
What’s in a structured value?
 
20100614 ISWSA Keynote
20100614 ISWSA Keynote20100614 ISWSA Keynote
20100614 ISWSA Keynote
 
Developments in catalogues and data sharing
Developments in catalogues and data sharingDevelopments in catalogues and data sharing
Developments in catalogues and data sharing
 
“Library 2.0: Let's get connected!”
“Library 2.0: Let's get connected!”“Library 2.0: Let's get connected!”
“Library 2.0: Let's get connected!”
 
BIBFRAME and Moving Away From MARC
BIBFRAME and Moving Away From MARCBIBFRAME and Moving Away From MARC
BIBFRAME and Moving Away From MARC
 
Open Data and CKAN Data Catalogues
Open Data and CKAN Data CataloguesOpen Data and CKAN Data Catalogues
Open Data and CKAN Data Catalogues
 
Culture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data LandCulture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data Land
 
BHL Markup Efforts and Plans
BHL Markup Efforts and PlansBHL Markup Efforts and Plans
BHL Markup Efforts and Plans
 
Dublin Core Intro
Dublin Core IntroDublin Core Intro
Dublin Core Intro
 
Learning Conflict Resolution Strategies for Cross-Language Wikipedia Data Fusion
Learning Conflict Resolution Strategies for Cross-Language Wikipedia Data FusionLearning Conflict Resolution Strategies for Cross-Language Wikipedia Data Fusion
Learning Conflict Resolution Strategies for Cross-Language Wikipedia Data Fusion
 

Plus de Thomas Meehan (7)

BIBFRAME : the future of cataloguing?
BIBFRAME : the future of cataloguing?BIBFRAME : the future of cataloguing?
BIBFRAME : the future of cataloguing?
 
BIBFRAME as a Library Linked Data Standard
BIBFRAME as a Library Linked Data StandardBIBFRAME as a Library Linked Data Standard
BIBFRAME as a Library Linked Data Standard
 
Linked Data : Cataloguing and a World Wide Web of Data
Linked Data : Cataloguing and a World Wide Web of DataLinked Data : Cataloguing and a World Wide Web of Data
Linked Data : Cataloguing and a World Wide Web of Data
 
Cig tm future
Cig tm futureCig tm future
Cig tm future
 
BIBFRAME
BIBFRAMEBIBFRAME
BIBFRAME
 
What's Wrong With MARC?
What's Wrong With MARC?What's Wrong With MARC?
What's Wrong With MARC?
 
FRBR
FRBRFRBR
FRBR
 

Dernier

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 

Dernier (20)

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 

Introduction to Linked Data

  • 1. Introduction to Linked Data Linked Data: what cataloguers need to know #cigld CILIP Cataloguing and Indexing Group (CIG) 20 February 2015 Thomas Meehan tom@aurochs.org @orangeaurochs
  • 3. linked open DATA 245 00 $a Models for decision : $b a conference under the auspices of the United Kingdom Automation Council organised by the British Computer Society and the Operational Research Society / $c edited by C.M. Berners-Lee. 260 __ $a London : $b English Universities Press, $c 1965. 300 __ $a x, 149 p. : $b ill. ; $c 23 cm. 504 __ $a Includes bibliographical references. 700 1_ $a Berners-Lee, C. M.
  • 5. …LINKED open data <table border="0" cellpadding="0" cellspacing="0"> <tbody> <tr id="bib-author-row"> <th>Author:</th> <td id="bib-author-cell"> <a href="/search?q=au%3ABerners-Lee%2C+C.+M.&amp;qt=hot_author" title="Search for more by this author">C M Berners-Lee</a>; <a href="/search?q=au%3ABritish+Computer+Society.&amp;qt=hot_author" title="Search for more by this author">British Computer Society.</a>; <a href="/search?q=au%3AInstitution+of+Electrical+Engineers.&amp;qt=hot_author" title="Search for more by this author">Institution of Electrical Engineers.</a>; <a href="/search?q=au%3AOperational+Research+Society.&amp;qt=hot_author" title="Search for more by this author">Operational Research Society.</a? </td> </tr> <tr id="bib-publisher-row"> <th>Publisher:</th> <td id="bib-publisher-cell">London : English Universities Press, [1965]</td> </tr> … </table>
  • 7. The Web of Data • Use URIs as names for things • Use HTTP URIs so that people can look up those names. • When someone looks up a URI, provide useful information, using the standards (RDF, SPARQL) • Include links to other URIs so that they can discover more things. Tim Berners-Lee (2006)
  • 8. English sentence Brideshead Revisited was written by Evelyn Waugh.
  • 9. Entities and Relationship Brideshead revisited created by Evelyn Waugh
  • 10. Adding URIs: Brideshead revisited http://id.loc.gov/authorities/names/no97080492 created by Evelyn Waugh
  • 11. Adding URIs: Waugh http://id.loc.gov/authorities/names/no97080492 created by http://id.loc.gov/authorities/names/n79049248
  • 14. RDF (Turtle) @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix dct: <http://purl.org/dc/terms/> . lc_names:no97080492 dct:creator lc_names:n79049248 .
  • 15. Brideshead Revisited @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix lc_languages: <http://id.loc.gov/vocabulary/languages> . @prefix dct: <http://purl.org/dc/terms/> . lc_names:no97080492 dct:creator lc_names:n79049248 ; dct:created "1945" ; dct:extent "1 volume" ; dct:language lc_languages:eng ; dct:title "Brideshead revisited" ; dct:type <http://purl.org/dc/dcmitype/Text> .
  • 16. Brideshead Revisited @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix lc_languages: <http://id.loc.gov/vocabulary/languages/> . @prefix dct: <http://purl.org/dc/terms/> . lc_names:no97080492 dct:creator lc_names:n79049248 ; dct:created "1945" ; dct:extent "1 volume" ; dct:language lc_languages:eng ; dct:title "Brideshead revisited" ; dct:type <http://purl.org/dc/dcmitype/Text> .
  • 17.
  • 18.
  • 19. LC Name Authority for Waugh (excerpt) @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix mads: <http://www.loc.gov/mads/rdf/v1#> . @prefix viaf: <http://viaf.org/viaf/sourceID/> . lc_names:n79049248 rdf:type mads:PersonalName ; rdf:type mads:Authority ; mads:authoritativeLabel "Waugh, Evelyn, 1903-1966"@en ; mads:hasExactExternalAuthority viaf:68937142 .
  • 20. RDF Serialisations N Triples <http://id.loc.gov/authorities/names/n79049248> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#PersonalName>. <http://id.loc.gov/authorities/names/n79049248> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.loc.gov/mads/rdf/v1#Authority>. <http://id.loc.gov/authorities/names/n79049248> <http://www.loc.gov/mads/rdf/v1#authoritativeLabel> "Waugh, Evelyn, 1903-1966"@en. <http://id.loc.gov/authorities/names/n79049248> <http://www.loc.gov/mads/rdf/v1#hasExactExternalAuthority> <http://viaf.org/viaf/sourceID/68937142>.
  • 21. RDF Serializations Turtle and N3 @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix mads: <http://www.loc.gov/mads/rdf/v1#> . @prefix viaf: <http://viaf.org/viaf/sourceID/> . lc_names:n79049248 rdf:type mads:PersonalName ; rdf:type mads:Authority ; mads:authoritativeLabel "Waugh, Evelyn, 1903-1966"@en ; mads:hasExactExternalAuthority viaf:68937142 .
  • 22. RDF Serialisation RDF/XML <?xml version="1.0"?> <rdf:RDF xmlns:lc_names="http://id.loc.gov/authorities/names/" xmlns:mads="http://www.loc.gov/mads/rdf/v1#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:viaf="http://viaf.org/viaf/sourceID/"> <mads:PersonalName rdf:about="http://id.loc.gov/authorities/names/n79049248"> <rdf:type rdf:resource="http://www.loc.gov/mads/rdf/v1#Authority" /> <mads:authoritativeLabel xml:lang="en">Waugh, Evelyn, 1903-1966</mads:authoritativeLabel> <mads:hasExactExternalAuthority rdf:resource="http://viaf.org/viaf/sourceID/68937142" /> </mads:PersonalName> </rdf:RDF>
  • 23. RDF Serialisation RDF/JSON { "http://id.loc.gov/authorities/names/n79049248": { "http://www.loc.gov/mads/rdf/v1#hasExactExternalAuthority": [ { "type": "uri", "value": "http://viaf.org/viaf/sourceID/68937142" } ], "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": [ { "type": "uri", "value": "http://www.loc.gov/mads/rdf/v1#PersonalName" }, { "type": "uri", "value": "http://www.loc.gov/mads/rdf/v1#Authority" } ], "http://www.loc.gov/mads/rdf/v1#authoritativeLabel": [ { "lang": "en", "type": "literal", "value": "Waugh, Evelyn, 1903-1966" } ] } }
  • 24. RDF Serialisation RDFa <div xmlns="http://www.w3.org/1999/xhtml" prefix=" rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# mads: http://www.loc.gov/mads/rdf/v1# rdfs: http://www.w3.org/2000/01/rdf-schema#" > <div typeof="mads:PersonalName" about="http://id.loc.gov/authorities/names/n79049248"> <div rel="rdf:type" resource="http://www.loc.gov/mads/rdf/v1#Authority"></div> <div property="mads:authoritativeLabel" xml:lang="en" content="Waugh, Evelyn, 1903-1966"></div> <div rel="mads:hasExactExternalAuthority" resource="http://viaf.org/viaf/sourceID/68937142"></div> </div> </div>
  • 25. Microdata, RDFa, Schema.org OCLC Worldcat uses embedded Schema.org: http://www.worldcat.org/oclc/221944758
  • 26. Schema.org RDFa on Worldcat
  • 27. Schema.org RDFa on Worldcat
  • 28. Schema.org RDFa on Worldcat <div xmlns="http://www.w3.org/1999/xhtml" id="microdata" prefix="xml: http://www.w3.org/XML/1998/namespace skos: http://www.w3.org/2004/02/skos/core# library: http://purl.org/library/ gen-ont: http://www.w3.org/2006/gen/ont# pto: http://www.productontology.org/id/ madsrdf: http://www.loc.gov/mads/rdf/v1# void: http://rdfs.org/ns/void# schema: http://schema.org/ oclc: http://www.worldcat.org/oclc/ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# umbel: http://umbel.org/umbel# bibo: http://purl.org/ontology/bibo/ foaf: http://xmlns.com/foaf/0.1/ cc: http://creativecommons.org/ns# awol: http://bblfish.net/work/atom-owl/2006-06-06/# owl: http://www.w3.org/2002/07/owl# dct: http://purl.org/dc/terms/ blterms: http://www.bl.uk/schemas/bibliographic/blterms# rdfs: http://www.w3.org/2000/01/rdf-schema#"><div resource="http://www.worldcat.org/oclc/221944758" typeof="http://schema.org/Book"><<a href="http://www.worldcat.org/oclc/221944758">http://www.worldcat.org/oclc/221944758</a>><table border="0" cellspacing="0"><tr><td><a href="http://purl.org/library/oclcnum">library:oclcnum</a></td><td>"<span property="library:oclcnum">221944758</span>"</td></tr><tr><td><a href="http://purl.org/library/placeOfPublication">library:placeOfPublication</a></td><td><div property="library:placeOfPublication" typeof="http://schema.org/Place"><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Place" property="rdf:type" resource="http://schema.org/Place">schema:Place</a></td></tr><tr><td><a href="http://schema.org/Place">schema:name</a></td><td>"<span property="schema:name">London</span>"</td></tr></table></div></td></tr><tr><td><a href="http://purl.org/library/placeOfPublication">library:placeOfPublication</a></td><td><div property="library:placeOfPublication" resource="http://id.loc.gov/vocabulary/countries/enk" typeof="http://schema.org/Country"><<a href="http://id.loc.gov/vocabulary/countries/enk">http://id.loc.gov/vocabulary/countries/enk</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Country" property="rdf:type" resource="http://schema.org/Country">schema:Country</a></td></tr></table></div></td></tr><tr><td><a href="http://www.w3.org/2002/07/owl#sameAs">owl:sameAs</a></td><td><<a href="info:oclcnum/221944758" property="owl:sameAs" resource="info:oclcnum/221944758">info:oclcnum/221944758</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Book" property="rdf:type" resource="http://schema.org/Book">schema:Book</a></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" typeof="http://schema.org/Intangible"><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/subjects/sh85042288" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/subjects/sh85042288">http://id.loc.gov/authorities/subjects/sh85042288</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Electronic data processing.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" resource="http://dewey.info/class/658.4033/" typeof="http://schema.org/Intangible"><<a href="http://dewey.info/class/658.4033/">http://dewey.info/class/658.4033/</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" resource="http://id.worldcat.org/fast/1081992" typeof="http://schema.org/Intangible"><<a href="http://id.worldcat.org/fast/1081992">http://id.worldcat.org/fast/1081992</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Public administration--Data processing</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" resource="http://id.worldcat.org/fast/906956" typeof="http://schema.org/Intangible"><<a href="http://id.worldcat.org/fast/906956">http://id.worldcat.org/fast/906956</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Electronic data processing</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:about</a></td><td><div property="schema:about" typeof="http://schema.org/Intangible"><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/subjects/sh2008110032" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/subjects/sh2008110032">http://id.loc.gov/authorities/subjects/sh2008110032</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Intangible" property="rdf:type" resource="http://schema.org/Intangible">schema:Intangible</a></td></tr><tr><td><a href="http://schema.org/Intangible">schema:name</a></td><td>"<span property="schema:name">Public administration--Data processing.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/149407214" typeof="http://schema.org/Organization"><<a href="http://viaf.org/viaf/149407214">http://viaf.org/viaf/149407214</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/names/n79056431" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/names/n79056431">http://id.loc.gov/authorities/names/n79056431</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">British Computer Society.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/130073090" typeof="http://schema.org/Organization"><<a href="http://viaf.org/viaf/130073090">http://viaf.org/viaf/130073090</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/names/n85076053" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/names/n85076053">http://id.loc.gov/authorities/names/n85076053</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">Operational Research Society.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/137135158" typeof="http://schema.org/Organization"><<a href="http://viaf.org/viaf/137135158">http://viaf.org/viaf/137135158</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.loc.gov/mads/rdf/v1#isIdentifiedByAuthority">madsrdf:isIdentifiedByAuthority</a></td><td><<a href="http://id.loc.gov/authorities/names/n79063901" property="madsrdf:isIdentifiedByAuthority" resource="http://id.loc.gov/authorities/names/n79063901">http://id.loc.gov/authorities/names/n79063901</a>></td></tr><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">Institution of Electrical Engineers.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:contributor</a></td><td><div property="schema:contributor" resource="http://viaf.org/viaf/36887201" typeof="http://schema.org/Person"><<a href="http://viaf.org/viaf/36887201">http://viaf.org/viaf/36887201</a>><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Person" property="rdf:type" resource="http://schema.org/Person">schema:Person</a></td></tr><tr><td><a href="http://www.w3.org/2000/01/rdf-schema#label">rdfs:label</a></td><td>"<span property="rdfs:label">Berners-Lee, C. M.</span>"</td></tr></table></div></td></tr><tr><td><a href="http://schema.org/Book">schema:datePublished</a></td><td>"<span property="schema:datePublished">1965</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:inLanguage</a></td><td>"<span property="schema:inLanguage">en</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:name</a></td><td>"<span property="schema:name">Models for decision : a conference under the auspices of the United Kingdom Automation Council organised by the British Computer Society and the Operational Research Society</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:numberOfPages</a></td><td>"<span property="schema:numberOfPages">149</span>"</td></tr><tr><td><a href="http://schema.org/Book">schema:publisher</a></td><td><div property="schema:publisher" typeof="http://schema.org/Organization"><table border="0" cellspacing="0"><tr><td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">rdf:type</a></td><td><a href="http://schema.org/Organization" property="rdf:type" resource="http://schema.org/Organization">schema:Organization</a></td></tr><tr><td><a href="http://schema.org/Organization">schema:name</a></td><td>"<span property="schema:name">English Universities Press</span>"</td></tr></table></div></td></tr></table></div></div>
  • 29. Worldcat Schema.org data for a book @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix schema: <http://schema.org/> . @prefix worldcat: <http://www.worldcat.org/oclc/> . @prefix library: <http://purl.org/library/> . @prefix viaf: <http://viaf.org/viaf/> . @prefix lc_authorities: <http://id.loc.gov/authorities/names/> . @prefix mads: <http://www.loc.gov/mads/rdf/v1#> . worldcat:221944758 rdf:type schema:Book; library:oclcnum "221944758"; schema:name "Models for decision : a conference under the auspices of the United Kingdom Automation Council organised by the British Computer Society and the Operational Research Society"; library:placeOfPublication _:1; schema:publisher _:4 . schema:datePublished "[1965]"; schema:numberOfPages "149"; schema:contributor viaf:149407214; schema:contributor viaf:130073090; schema:contributor viaf:137135158; schema:contributor viaf:36887201; _:1 rdf:type schema:Place; schema:name "London :" . _:4 rdf:type schema:Organization; schema:name "English Universities Press" . viaf:149407214 rdf:type schema:Organization; madsrdf:isIdentifiedByAuthority lc_authorities:n79056431; schema:name "British Computer Society." . viaf:130073090 rdf:type schema:Organization; madsrdf:isIdentifiedByAuthority lc_authorities:n85076053; schema:name "Operational Research Society." . viaf:137135158 rdf:type schema:Organization; madsrdf:isIdentifiedByAuthority lc_authorities:n79063901; schema:name "Institution of Electrical Engineers." . viaf:36887201 rdf:type schema:Person; schema:name "Berners-Lee, C. M." .
  • 30. Lots of Ways To Do It @prefix schema: <http://schema.org/> . @prefix dct: <http://purl.org/dc/terms/> . @prefix viaf: <http://viaf.org/viaf/> . @prefix rdau: <http://rdaregistry.info/Elements/u/> . @prefix cam: <http://data.lib.cam.ac.uk/id/entity/> . @prefix bnb_person: <http://bnb.data.bl.uk/id/person/> . @prefix foaf: <http://xmlns.com/foaf/spec/#> . example:book0001 dct:creator cam:cambrdgedb_eeacef63d900c2acffc3daa400f3d4e4 . example:book0001 dct:creator bnb_person:WaughEvelyn1903-1966 . example:book0001 schema:creator viaf:68937142 . example:book0001 rdau:#P60672 viaf:68937142 . example:book0001 dct:creator lc_names:n79049248 . example:book0001 dct:creator _:bnode001 . _:bnode001 foaf:name "Waugh, Evelyn, 1903-1966" . example:book0001 example:author example:author0001
  • 31. Blank Nodes @prefix lc_names: <http://id.loc.gov/authorities/names/> . @prefix dct: <http://purl.org/dc/terms/> . @prefix foaf: <http://xmlns.com/foaf/spec/#> . lc_names:no97080492 dct:creator _:bnode01 . _:bnode01 a foaf:Person . _:bnode01 foaf:name "Evelyn Waugh" . lc_names:no97080492 dc:creator [ a foaf:Person ; foaf:name "Evelyn Waugh" ] .
  • 32. Introduction to Linked Data @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix dct: <http://purl.org/dc/terms/> . @prefix bibo: <http://purl.org/ontology/bibo/> . cigld_intro dct:creator _:bnode001 ; dct:created "2015" ; dct:title "Introduction to Linked Data" ; dct:isPartOf _:bnode003 . _:bnode001 a foaf:person ; foaf:name "Thomas Meehan" ; foaf:mbox <tom@aurochs.org> ; foaf:account _:bnode002 . _:bnode002 a foaf:OnlineAccount ; foaf:accountServiceHomepage "https://twitter.com/" ; foaf:accountName "@orangeaurochs" . _:bnode003 a bibo:Series ; dct:title "Linked data: what cataloguers need to know" .
  • 33. References • Worldcat record for Models for decision / C. Berners-Lee. http://www.worldcat.org/title/models-for- decision-a-conference-under-the-auspices-of-the- united-kingdom-automation-council-organised- by-the-british-computer-society-and-the- operational-research-society/oclc/221944758 • What is open data? / The Open Data Institute. http://theodi.org/guides/what-open-data • Linked Data : design issues / Tim Berners-Lee. http://www.w3.org/DesignIssues/LinkedData

Notes de l'éditeur

  1. WHY LEARN ABOUT LINKED DATA Likely to be replacement for MARC (Bibframe?) Even if not, is being used to openly publish bibliographic data on the web Being used by eg search engines for semantic results Because cataloguers can take some part in the discussion!
  2. Term often taken to means linked open data: Data: not just text like HTML which is a marked up document. Linked: not just text strings, eg hypertext, you can find out more by clicking on links Open: Freely available, licensed, re-usable, re-purposable
  3. Structured Labelled In a recognised format But No links: all the data is in text strings. If you want to find out anything more about these things, you have to get out of the system and search google or the lc authorities site. Arguably, the 700 is a link if you follow a recognised authority scheme. However, it's not an actionable link like an 856 field. You cannot follow the contents of that and find out more. It would, in fact, be hard to construct a URL from that which would go to anything meaningful. You have to get out of the system and search google or the lc authorities site. Not (necessarily) open, or at least easy to get at. Record sharing is common in library cataloguing, but licences are rare and access is through a z39.50 gate or reconstructed web pages. Not (arguably) even data as such but actually a record and largely textual. None of the bits make sense in isolation. I'll talk a little more about MARC in particular this afternoon. I
  4. This is linked in that it's hypertext: you can find out more by clicking on links, although only internally in this case. These links are still aimed at people: difficult for a computer, e.g. a search engine, to assess value. If we look at the source for this…..
  5. This is a snippet of the HTML from the previous page, specifically the part listing the authors and the publisher. It is all document based. The table is a means of display only. The th for Author is merely for human readability. The links go to other searches. The publisher information is wholly textual and there is no attempt to even split the elements. Someone like Mr Google could attempt to extract meaning from a page like this but it is unreliable at best. This is the battle that Google has been fighting since it started: how to extract meaning from web pages. This is one reason why Google are keen on linked data! Furthermore, the links that there are merely perform another search. Looking at webpage from the previous slide, you'll also note the copyright notice at the bottom!
  6. Here is an example of some beautiful linked data but I can't let you see it, search it, or use it. We can discuss terms later. Open means several things: Freely available Licensed to minimise restriction (see the whole open access question). A lot of the Cambridge linked data work revolved around this. Re-usable. If you can't reuse other people's data, the whole idea of linked data falls down, even if you can search it. Re-distributable Re-purposable. You can use it for purposes beyond its original intention. "Open data is information that is available for anyone to use, for any purpose, at no cost. Open data has to have a licence that says it is open data. Without a licence, the data can’t be reused. The licence might also say: that people who use the data must credit whoever is publishing it (this is called attribution) that people who mix the data with other data have to also release the results as open data (this is called share-alike)"—The Open Data Institute.
  7. When people use the phrase Linked Data they are actually referring to a Web of Data compared to web of documents, using specific principles, i.e. open data in RDF. URI: URIs can be URLs or URNs. URLs can be http, ftp, etc. URNs are not web actionable HTTP: I.e. over the web. If you don't have http, you cannot easily go and look up more information. Useful info: Basically description, something about it, as on a web page you'd provide information in HTML, in linked data you provide information in RDF (of which more in a second). You can search it using SPARQL (of which more from Owen later) Links: Crucial. You can find out more from other URIs, much as links on a web page allow references and explanations, and further information to be explored. Note: All this is independent of libraries and proceeds rather from the W3C. Linked data is not a formal W3C standard but RDF is, like HTML. The Web of Data is the basis of a semantic web, where meaning as well as text means that computers can make sense of it and act on it. Indeed linked data is sometimes described as a re-branding or re-launch of the semantic web. Then, of course there is the web of things: fridges that can catalogue cheese using MARC, central heating that understands Bibframe, or FRBR-compliant toasters. Understanding RDF is important to understanding linked data and that's what I'm going to concentrate on for the rest of this session.
  8. This is a simple English sentence. It has a subject "Brideshead revisited" (the book) It has an object "Evelyn Waugh" It has a predicate "was written by" This is text. How can we turn this into data?
  9. We'll start with dividing it into Entities and relationships, similar to the modelling behind FRBR: In this case, a Work, a Person and a relationship. These are still English text, ambiguous, unidentified, and not linked.
  10. Next, we can start to replace textual names of things with URIs. First, we'll give the book a URI. The book Brideshead Revisited is a resource, not in the RDA sense but anything that can be given an identity. We identify it in RDF using a URI.
  11. Second, the author Evelyn Waugh, the object.
  12. Lastly we can add a URI for the predicate, the relationship. In linked data, even the relationships are established or authorised, not just names and works and subjects. Everything.
  13. Third, the creator relationship. This is now a what is called a RDF Triple and, with some punctuation, a valid piece of RDF! However, it is split over three lines. To make this easier to read, especially when there are lots of triples, we can write this out in a different way: Turtle.
  14. The first two lines are actually an attempt to make this easier to read. After the word @prefix, it gives a prefix (could be anything: it's just to make it easier to read; lastly is the base of a URI) The triple itself now all fits more easily on one line. This is a Triple, which is the foundation of RDF. It is an assertion (not necessarily a fact). Subject Predicate Object It is important and significant that this lone triple stands alone as a piece of data. It doesn't need to be part of a record as such. We can follow the URIs to find out more. Triples can get quite a lot more complicated. There are ways of saying more nuanced things. In fact, one problem some have with efforts like Bibframe is that the abstraction goes too far. There are also some obvious problems with this: Provenance. Without a record, how can we demonstrate who said this, how reliable it is. There are ways round this and initiatives to do so. Complexity. Redundancy. What if DC and LC shut up shop or change their minds? I promise not to put a lot of XML in this presentation but I will mention triples a lot in this format as they really are fundamental to RDF.
  15. A fuller description using DCMI terms. Keep thinking of it being in three columns. The subject column is not repeated here because the subject is the same for all the triples. The predicates and objects change. This says…. {run through triples}
  16. Now, each of those URIs can of course be followed, and I've picked one out to follow. If we follow the link (or screenshot), we can see what information the URI gives us. As we are using a browser, the URI resolves to a HTML page. If we were a computer programme we could request this page as data. We can do so through the web page too by clicking on one of the links at the bottom. We'll get a page in what is called N Triples.
  17. LC Authorities Linked Data in HTML (screenshot)
  18. LC Authorities Linked Data in N Triples (screenshot)
  19. This is an excerpt of the LC Name Authority linked data converted to Turtle.
  20. N Triples: Simple. Easy to see the triples and how many there are. Hard to read each element. Hard to fit it on a page!
  21. Easy to read and fit on a screen although Longer for snippets due to the prefixes. Also, syntax can get more complicated to cope with abbreviation. Doubly useful to learn as it's essentially the same syntax as SPARQL, which is itself a really useful way of getting to know and understanding linked data.
  22. Originally the only RDF format Often confused with RDF itself Easy for computers to read Very hard for people to read!! Often used in Bibframe documentation examples.
  23. JSON (Javascript Object Notation) is increasingly favoured by programmers. It uses the same data structures as Javascript so can be dropped easily into a programme. It is also easy for other programming languages to use and is not even limited to RDF or even Javascript. {Curly brackets for Objects} [Square brackets for arrays] JSON/LD is superficially similar, uses JSON, but is also quite different.
  24. I.e. for embedding into HTML pages
  25. Linked eg hypertext, you can find out more by clicking on links, although only internally. These links are still aimed at people: difficult for a computer, e.g. a search engine, to assess value. Copyright at the bottom!
  26. Here are the N-triples…
  27. The viaf id for Berners-Lee is followable: click on it and you get the VIAF record. Choose the RDF view to see the underlying RDF.
  28. These triples or pairs of triples all make the same assertion but use different vocabularies and different uris to do so. The sixth one asserts the creator's name as a string. This can't be done directly as dc:creator needs a resource- a URI- not a literal string.