SlideShare une entreprise Scribd logo
1  sur  110
It’s Not Rocket-Surgery
          A brief introduction to linked library data




     Ross Singer
ross.singer@talis.com
What is Linked Data?
Tim Berners-Lee
http://www.w3.org/People/Berners-Lee/card#i
        http://viaf.org/viaf/85312226/
            LCCN: no 99010609
Four Rules
 • 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. 
http://www.w3.org/DesignIssues/LinkedData.html
Cloud
http://semantic.ckan.net/group/?group=http://ckan.net/group/lld
What is RDF?
RDF is a data model
     not a serialization
Triple
Triple

• Subject (the referent)
• Predicate (a property)
• Object (the value)
Triple

• Subject (URI)
• Predicate (URI)
• Object (URI or Literal)
“Entity-Attribute-Value”
URIs
URIs

• Unambiguous Identifiers
 • If two resources have the same URI, they
    must be referring to the same thing
• Dereferenceable
 • “Follow your nose”
Graphs
Graph

• The collection of statements (triples)
• Shows the connections between things
• We understand the connections, because
  the predicates have unambiguous meaning
• Follow your nose and expand the graph
Schemas/Vocabularies
• No real similarity to XML Schema
  •   Common source of confusion (e.g. Dublin Core)

• No “validation”, per se
 • constraints only apply for properties and
      classes, not resources
      •   Unless the statements contradict each other

• Mix and match vocabularies to fill out the
  description across domains
• Dublin Core
• Bibliontology
• FOAF
• SKOS
• Good Relations
• Music Ontology, etc.
Open world
assumption
Open World
         Assumption
• Cannot assume that any source has all of
  the facts about a resource
• Reuse of identifiers allows the
  augmentation of datasets
• There is no “document”, because it’s always
  a work in progress
Why bother?
http://www.oclc.org/worldcat/grow/default.aspx
http://inkdroid.org:3000/
http://musicbrainz.org/statistics
http://openlibrary.org/recentchanges#all
http://www.citeulike.org/home
http://www.mendeley.com/research/13000year-paleolimnological-record-uinta-mountains-utah-inferred-diatoms-lossonignition-analysis/
http://www.imdb.com/title/tt0100519/
http://www.freebase.com/view/en/greece
http://www.geonames.org/4655156/saint-elmo.html
Too much to go it
     alone
How?
<caveat emptor>
Disclaimers
• There are currently no standards in actual
  use
• This is not an attempt to “catalog”, merely
   to model existing data
  • And a sketchy one at that
• No desire to roundtrip, etc.
• Just make something that links our data and
  allows it to be consumed by others
Exhibit A
Step 1
Identify the discrete resources
Let’s assume this is the
       “referent”
Identities
Subjects/Concepts
Places
Series
“FRBR”
But let’s ignore most of
     that for now
<http://lib.example.org/collection/13889626>
Bibliontology (BIBO)
   http://purl.org/ontology/bibo/
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393”, “1403469466” .
Dublin Core
http://purl.org/dc/terms/
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393”, “1403469466” ;
   dcterms:title “Buzz Aldrin” ;
   dcterms:dateCopyrighted “2006” .
So far, just literals
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393” , “1403469466” ;
   dcterms:title “Buzz Aldrin” ;
   dcterms:dateCopyrighted “2006” ;
   dcterms:creator <http://viaf.org/viaf/164665342> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdaGr2: <http://RDVocab.info/ElementsGr2/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/
>.

<http://viaf.org/viaf/164665342>
   rdaGr2:dateOfBirth "1949-01-15" ;
   a rdaEnt:Person, foaf:Person ;
   owl:sameAs <http://d-nb.info/gnd/12626242X> ;
   foaf:name "Raum, Betty", "Raum, Elizabeth", "Raum, Elizabeth A.
(1949- ).", "Raum, Elizabeth." .
VIAF


• SRU interface
• LCCNs in VIAF record
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393” , “1403469466” ;
   dcterms:title “Buzz Aldrin” ;
   dcterms:dateCopyrighted “2006” ;
   dcterms:creator <http://viaf.org/viaf/164665342> ;
   dcterms:subject <http://viaf.org/viaf/110368892>, <http://
   id.loc.gov/authorities/sh2007100949#concept>, <http://
   id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/
   viaf/158349825> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdaGr2: <http://RDVocab.info/ElementsGr2/> .
@prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/
>.

<http://viaf.org/viaf/110368892>
  rdaGr2:dateOfBirth "1930" ;
  a rdaEnt:Person, foaf:Person ;
  owl:sameAs <http://d-nb.info/gnd/107714566>, <http://
dbpedia.org/resource/Buzz_Aldrin> ;
  foaf:name "Aldrin, Buzz", "Aldrin, Buzz 1930-....", "Aldrin, Buzz,
1930-", "Aldrin, Edwin E.", "Aldrin, Edwin E., 1930-", "Aldrin, Edwin
Eugen, 1930-", "Aldrin, Edwin Eugene 1930-", "Aldrin, Edwin Eugene
1930-....", "Aldrin, Edwin Eugene junior 1930-" .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<http://id.loc.gov/authorities/sh2007100949#concept>
    dcterms:created "2007-09-26T00:00:00-04:00"^^<http://
www.w3.org/2001/XMLSchema#dateTime> ;
    dcterms:modified "2007-10-26T07:54:12-04:00"^^<http://
www.w3.org/2001/XMLSchema#dateTime> ;
    dcterms:source "Work cat.: Eileen Collins, c2006"@en ;
    a skos:Concept ;
    owl:sameAs <info:lc/authorities/sh2007100949> ;
    skos:inScheme <http://id.loc.gov/authorities#conceptScheme>,
<http://id.loc.gov/authorities#topicalTerms> ;
    skos:prefLabel "Astronauts--United States--Biography--Juvenile
literature"@en .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<http://id.loc.gov/authorities/sh2008112104#concept>
  dcterms:created "2008-03-11T00:00:00-04:00"^^<http://
www.w3.org/2001/XMLSchema#dateTime> ;
  dcterms:modified "2008-03-12T08:08:09-04:00"^^<http://
www.w3.org/2001/XMLSchema#dateTime> ;
  dcterms:source "Work cat.: How to build a rocket, 2001"@en ;
  a skos:Concept ;
  owl:sameAs <info:lc/authorities/sh2008112104> ;
  skos:inScheme <http://id.loc.gov/authorities#conceptScheme>,
<http://id.loc.gov/authorities#topicalTerms> ;
  skos:prefLabel "Space flight to the moon--Juvenile literature"@en .
id.loc.gov
• Label lookup service
 • http://id.loc.gov/authorities/label/
    Astronauts--United%20States--
    Biography--Juvenile%20Literature
    redirects to http://id.loc.gov/authorities/
    sh2007100949#concept
• Full data dumps available
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/
>.

<http://viaf.org/viaf/158349825>
   a rdaEnt:CorporateBody, foaf:Organization ;
   foaf:name "Apollo Project (Spojené státy americké)", "Apollo
Project (U.S.)", "Progetto Apollo (U.S.)", "Project Apollo", "Project
Apollo (Spojené státy americké)", "Project Apollo (U.S.)", "Spojené
státy americké. Project Apollo", "United States. Project Apollo" .
Sidenote:
Concepts vs. Resources
RDA Elements
http://RDVocab.info/Elements/
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rda: <http://RDVocab.info/Elements/> .

<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393” , “1403469466” ;
   dcterms:title “Buzz Aldrin” ;
   dcterms:dateCopyrighted “2006” ;
   dcterms:creator <http://viaf.org/viaf/164665342> ;
   dcterms:subject <http://viaf.org/viaf/110368892>, <http://
   id.loc.gov/authorities/sh2007100949#concept>, <http://
   id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/
   viaf/158349825> ;
   rda:placeOfPublication <http://purl.org/NET/marccodes/
   countries/ilu#location>, “Chicago, Ill.” .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://purl.org/NET/marccodes/countries/ilu#location>
   dcterms:isPartOf <http://purl.org/NET/marccodes/countries/
regions/2#location> ;
   a <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
   owl:sameAs <http://purl.org/NET/marccodes/gacs/n-us-
il#location>, <http://sws.geonames.org/4896861/>, <info:lc/
vocabulary/countries/ilu> ;
   skos:notation "ilu" ;
   skos:prefLabel "Illinois"@en .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix wgs84_pos: <http://www.w3.org/2003/01/geo/wgs84_pos#> .

<http://sws.geonames.org/4896861/>
  gn:alternateName "Estado de Illinois"@es, "State of Illinois"@en, "Иллинойс"@ru ;
  gn:childrenFeatures <http://sws.geonames.org/4896861/contains.rdf> ;
  gn:countryCode "US" ;
  gn:featureClass gn:A ;
  gn:featureCode <http://www.geonames.org/ontology#A.ADM1> ;
  gn:locationMap <http://www.geonames.org/4896861/illinois.html> ;
  gn:name "Illinois" ;
  gn:officialName "Illinois", "Illinois"@en, "Illinois"@es ;
  gn:parentADM1 <http://sws.geonames.org/4896861/> ;
  gn:parentCountry <http://sws.geonames.org/6252001/> ;
  gn:parentFeature <http://sws.geonames.org/6252001/> ;
  gn:population "12772888" ;
  a gn:Feature ;
  rdfs:isDefinedBy "http://sws.geonames.org/4896861/about.rdf" ;
  wgs84_pos:alt "191" ;
  wgs84_pos:lat "40.00032" ;
  wgs84_pos:long "-89.25037" .
Linked MARC Codes
• URIs are based on the code, so no lookups
  are necessary
• GACs, Countries, Languages, Musical
  Genres, Instrument & Voices, Audience,
  Frequency, and Form of Item
• “Official” resources available at id.loc.gov
  for Languages, GACs and Countries
  • as SKOS:Concepts
RDA Elements
• Useful for properties that are specific to
  library data (statementOfResponsibility,
  etc.)
• Metric crap-tonne of properties
 • 459, to be exact
 • very few defined domains or ranges
 • lots of duplication from other vocabs
    (NIH)
<http://lib.example.org/collection/13889626>
   a bibo:Book ;
   bibo:lccn “2005006249” ;
   bibo:isbn10 “1403469393” , “1403469466” ;
   dcterms:title “Buzz Aldrin” ;
   dcterms:dateCopyrighted “2006” ;
   dcterms:creator <http://viaf.org/viaf/164665342> ;
   dcterms:subject <http://viaf.org/viaf/110368892>, <http://
   id.loc.gov/authorities/sh2007100949#concept>, <http://
   id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/
   viaf/158349825> ;
   rda:placeOfPublication <http://purl.org/NET/marccodes/
   countries/ilu#location>, “Chicago, Ill.” ;
   dcterms:language <http://purl.org/NET/marccodes/languages/
   eng#language> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix umbel: <http://umbel.org/umbel#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

<http://purl.org/NET/marccodes/languages/eng#lang>
  umbel:isAbout <http://id.loc.gov/authorities/
sh85043413#concept> ;
  a <http://www.lingvoj.org/ontology#Lingvo> ;
  owl:sameAs <http://lexvo.org/id/iso639-3/eng>, <http://
www.lingvoj.org/lang/en>, <info:lc/vocabulary/languages/eng> ;
  skos:notation "eng" ;
  skos:prefLabel "English"@en .
OWL
http://www.w3.org/2002/07/owl#
owl:sameAs
The nuclear option of the semantic web
owl:sameAs
       (taken literally)

• Infers that the subject and the object are
  exactly the same thing
• All properties and values appearing on one
  resource automatically apply to the other
@prefix owl: <http://www.w3.org/2002/07/owl#> .
<http://lib.example.org/collection/13889626>
    a bibo:Book ;
    bibo:lccn “2005006249” ;
    bibo:isbn10 “1403469393” , “1403469466” ;
    dcterms:title “Buzz Aldrin” ;
    dcterms:dateCopyrighted “2006” ;
    dcterms:creator <http://viaf.org/viaf/164665342> ;
    dcterms:subject <http://viaf.org/viaf/110368892>, <http://id.loc.gov/
    authorities/sh2007100949#concept>, <http://id.loc.gov/authorities/
    sh2008112104#concept>, <http://viaf.org/viaf/158349825> ;
    rda:placeOfPublication <http://purl.org/NET/marccodes/countries/
    ilu#location>, “Chicago, Ill.” ;
    dcterms:language <http://purl.org/NET/marccodes/languages/
    eng#language> ;
    owl:sameAs <http://openlibrary.org/books/OL3394932M>, <http://
    purl.org/NET/lccn/2005006249#i> .
<http://openlibrary.org/books/OL3394932M>
    rdvocab:note "Includes bibliographical references and index." ;
    rdvocab:placeOfPublication "Chicago, Ill" ;
    dc:subject "Aldrin, Buzz -- Juvenile literature.", "Astronauts -- United States -- Biography -- Juvenile
literature.", "Project Apollo (U.S.) -- Juvenile literature.", "Space flight to the moon -- Juvenile
literature." ;
    dcterms:extent "p. cm." ;
    dcterms:identifier "/books/OL3394932M" ;
    dcterms:issued "2005" ;
    dcterms:language "eng" ;
    dcterms:modified "2010-08-10 08:10:33.620330" ;
    dcterms:publisher "Heinemann Library" ;
    dcterms:subject [
         dcam:memberOf dcterms:DDC ;
         rdf:value "629.45/0092"
    ], [
         dcam:memberOf dcterms:DDC ;
         rdf:value "B"
    ], [
         dcam:memberOf dcterms:LCC ;
         rdf:value "TL789.85.A4 R38 2005"
    ];
    dcterms:title "Buzz Aldrin" ;
    bibo:authorList (<http://openlibrary.org/authors/OL1425365A>
    );
    bibo:isbn10 "1403469393", "1403469466" ;
    bibo:lccn "2005006249" .
<http://openlibrary.org/books/OL3394932M>
   j.4:note "Includes bibliographical references and index." ;
   j.4:placeOfPublication <http://purl.org/NET/marccodes/ilu#location>, "Chicago, Ill" ;
   j.4:statementOfResponsibility "Elizabeth Raum." ;
   j.4:titleProper "Buzz Aldrin" ;
   j.0:commonManifestation <http://openlibrary.org/works/OL5817590W> ;
   dc:publisher "Heinemann Library" ;
   dc:subject "Aldrin, Buzz -- Juvenile literature.", "Astronauts -- United States -- Biography -- Juvenile literature.",
"Project Apollo (U.S.) -- Juvenile literature.", "Space flight to the moon -- Juvenile literature." ;
   j.3:creator <http://openlibrary.org/authors/OL1425365A> ;
   j.3:extent "p. cm." ;
   j.3:isVersionOf <http://openlibrary.org/works/OL5817590W> ;
   j.3:issued "2005" ;
   j.3:language <http://purl.org/NET/marccodes/languages/eng#lang> ;
   j.3:subject <http://api.talis.com/stores/openlibrary/items/ddc/629450092#class>, <http://api.talis.com/stores/
openlibrary/items/ddc/b#class>, <http://api.talis.com/stores/openlibrary/items/lcc/tl78985a4_r38_2005#class> ;
   j.3:title "Buzz Aldrin" ;
   j.3:type "Biography", "Juvenile literature" ;
   j.1:isbn10 "1403469393", "1403469466" ;
   j.1:isbn13 "9781403469397", "9781403469465" ;
   j.1:lccn "2005006249" ;
   j.1:uri <http://www.loc.gov/catdir/toc/ecip059/2005006249.html> ;
   a <http://purl.org/ontology/bibo/Book> ;
   owl:sameAs <http://purl.org/NET/book/isbn/1403469393#book>, <http://purl.org/NET/book/isbn/
1403469466#book>, <http://purl.org/NET/lccn/2005006249#i>, <http://www4.wiwiss.fu-berlin.de/bookmashup/
books/1403469393>, <http://www4.wiwiss.fu-berlin.de/bookmashup/books/1403469466> ;
   j.2:depiction <http://covers.openlibrary.org/b/id/1742444-L.jpg>, <http://covers.openlibrary.org/b/id/1742444-
M.jpg>, <http://covers.openlibrary.org/b/id/1742444-S.jpg>, <http://covers.openlibrary.org/b/id/1742450-L.jpg>,
<http://covers.openlibrary.org/b/id/1742450-M.jpg>, <http://covers.openlibrary.org/b/id/1742450-S.jpg> .
Entailed Work/Set
   Groupings
Access to cover images
Implied FRBR
http://open.vocab.org/terms/commonManifestation
 http://open.vocab.org/terms/commonExpression
    http://open.vocab.org/terms/commonWork
<http://lib.example.org/collection/13889626>
    a bibo:Book ;
    bibo:lccn “2005006249” ;
    bibo:isbn10 “1403469393” , “1403469466” ;
    dcterms:title “Buzz Aldrin” ;
    dcterms:dateCopyrighted “2006” ;
    dcterms:creator <http://viaf.org/viaf/164665342> ;
    dcterms:subject <http://viaf.org/viaf/110368892>, <http://id.loc.gov/
    authorities/sh2007100949#concept>, <http://id.loc.gov/authorities/
    sh2008112104#concept>, <http://viaf.org/viaf/158349825> ;
    rda:placeOfPublication <http://purl.org/NET/marccodes/countries/
    ilu#location>, “Chicago, Ill.” ;
    dcterms:language <http://purl.org/NET/marccodes/languages/
    eng#language> ;
    owl:sameAs <http://openlibrary.org/books/OL3394932M>, <http://
    purl.org/NET/lccn/2005006249#i> ;
    rda:coverageOfTheContent <http://purl.org/NET/marccodes/gacs/
    n-us#location>, <http://purl.org/NET/marccodes/gacs/zmo> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://lib.example.org/collection/13889626>
   dcterms:isPartOf <http://lib.example.org/collection/
   series/American-lives> .

<http://lib.example.org/collection/series/American-lives>
   a bibo:Series ;
   dcterms:title “American lives” ;
   dcterms:hasPart <http://lib.example.org/collection/
   13889626> .
It looks different than
     we’re used to
But it’s not rocket
      surgery.
Thanks!
     Ross Singer
ross.singer@talis.com

Contenu connexe

Tendances

Libraries and Linked Data: Looking to the Future (2)
Libraries and Linked Data: Looking to the Future (2)Libraries and Linked Data: Looking to the Future (2)
Libraries and Linked Data: Looking to the Future (2)
ALATechSource
 
DBpedia Archive using Memento, Triple Pattern Fragments, and HDT
DBpedia Archive using Memento, Triple Pattern Fragments, and HDTDBpedia Archive using Memento, Triple Pattern Fragments, and HDT
DBpedia Archive using Memento, Triple Pattern Fragments, and HDT
Herbert Van de Sompel
 

Tendances (19)

Semantic Web Applications in Libraries: The Road to BIBFRAME
Semantic Web Applications in Libraries: The Road to BIBFRAMESemantic Web Applications in Libraries: The Road to BIBFRAME
Semantic Web Applications in Libraries: The Road to BIBFRAME
 
Libraries and Linked Data: Looking to the Future (2)
Libraries and Linked Data: Looking to the Future (2)Libraries and Linked Data: Looking to the Future (2)
Libraries and Linked Data: Looking to the Future (2)
 
Linked Data and Archival Description: Confluences, Contingencies, and Conflicts
Linked Data and Archival Description: Confluences, Contingencies, and ConflictsLinked Data and Archival Description: Confluences, Contingencies, and Conflicts
Linked Data and Archival Description: Confluences, Contingencies, and Conflicts
 
Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013Hiberlink: Investigating Reference Rot, December 2013
Hiberlink: Investigating Reference Rot, December 2013
 
BIBFRAME : the future of cataloguing?
BIBFRAME : the future of cataloguing?BIBFRAME : the future of cataloguing?
BIBFRAME : the future of cataloguing?
 
Signposting Overview
Signposting OverviewSignposting Overview
Signposting Overview
 
Archives & the Semantic Web
Archives & the Semantic WebArchives & the Semantic Web
Archives & the Semantic Web
 
From Record to Graph
From Record to GraphFrom Record to Graph
From Record to Graph
 
Linked Data at ISAW: How and Why
Linked Data at ISAW: How and WhyLinked Data at ISAW: How and Why
Linked Data at ISAW: How and Why
 
Lita national forum 2012
Lita national forum 2012Lita national forum 2012
Lita national forum 2012
 
Metadata - Linked Data
Metadata - Linked DataMetadata - Linked Data
Metadata - Linked Data
 
The Impact of Bibframe
The Impact of BibframeThe Impact of Bibframe
The Impact of Bibframe
 
Interoperability for web based scholarship
Interoperability for web based scholarshipInteroperability for web based scholarship
Interoperability for web based scholarship
 
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
 
Intro to Linked Open Data in Libraries Archives & Museums.
Intro to Linked Open Data in Libraries Archives & Museums.Intro to Linked Open Data in Libraries Archives & Museums.
Intro to Linked Open Data in Libraries Archives & Museums.
 
DBpedia Archive using Memento, Triple Pattern Fragments, and HDT
DBpedia Archive using Memento, Triple Pattern Fragments, and HDTDBpedia Archive using Memento, Triple Pattern Fragments, and HDT
DBpedia Archive using Memento, Triple Pattern Fragments, and HDT
 
Publishing and Using Linked Data
Publishing and Using Linked DataPublishing and Using Linked Data
Publishing and Using Linked Data
 
To the Rescue of the Orphans of Scholarly Communication
To the Rescue of the Orphans of Scholarly CommunicationTo the Rescue of the Orphans of Scholarly Communication
To the Rescue of the Orphans of Scholarly Communication
 
Linked Data and Tools
Linked Data and ToolsLinked Data and Tools
Linked Data and Tools
 

Similaire à It's not rocket surgery - Linked In: ALA 2011

¿ARCHIVO?
¿ARCHIVO?¿ARCHIVO?
¿ARCHIVO?
ESPOL
 
#LAWDI Open Context, publishing linked data in archaeology
#LAWDI Open Context, publishing linked data in archaeology#LAWDI Open Context, publishing linked data in archaeology
#LAWDI Open Context, publishing linked data in archaeology
ekansa
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museums
trevorthornton
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarians
trevorthornton
 
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
Jon Voss
 

Similaire à It's not rocket surgery - Linked In: ALA 2011 (20)

que hisciste el verano pasado
que hisciste el verano pasadoque hisciste el verano pasado
que hisciste el verano pasado
 
¿ARCHIVO?
¿ARCHIVO?¿ARCHIVO?
¿ARCHIVO?
 
#LAWDI Open Context, publishing linked data in archaeology
#LAWDI Open Context, publishing linked data in archaeology#LAWDI Open Context, publishing linked data in archaeology
#LAWDI Open Context, publishing linked data in archaeology
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museums
 
Linked data for librarians
Linked data for librariansLinked data for librarians
Linked data for librarians
 
Lifting the Lid on Linked Data
Lifting the Lid on Linked DataLifting the Lid on Linked Data
Lifting the Lid on Linked Data
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 
Building the new open linked library: Theory and Practice
Building the new open linked library: Theory and PracticeBuilding the new open linked library: Theory and Practice
Building the new open linked library: Theory and Practice
 
Building the New Open Linked Library
Building the New Open Linked LibraryBuilding the New Open Linked Library
Building the New Open Linked Library
 
Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web Linked data 101: Getting Caught in the Semantic Web
Linked data 101: Getting Caught in the Semantic Web
 
Bio ontologies and semantic technologies
Bio ontologies and semantic technologiesBio ontologies and semantic technologies
Bio ontologies and semantic technologies
 
Solr Flair: Search User Interfaces Powered by Apache Solr (ApacheCon US 2009,...
Solr Flair: Search User Interfaces Powered by Apache Solr (ApacheCon US 2009,...Solr Flair: Search User Interfaces Powered by Apache Solr (ApacheCon US 2009,...
Solr Flair: Search User Interfaces Powered by Apache Solr (ApacheCon US 2009,...
 
Data Designed for Discovery
Data Designed for DiscoveryData Designed for Discovery
Data Designed for Discovery
 
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
 
Introduction to RDF Data Model
Introduction to RDF Data ModelIntroduction to RDF Data Model
Introduction to RDF Data Model
 
Why libraries should embrace Linked Data
Why libraries should embrace Linked DataWhy libraries should embrace Linked Data
Why libraries should embrace Linked Data
 
Schema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your LibrarySchema.org: What It Means For You and Your Library
Schema.org: What It Means For You and Your Library
 
Library Linked Data and the Future of Bibliographic Control
Library Linked Data and the Future of Bibliographic ControlLibrary Linked Data and the Future of Bibliographic Control
Library Linked Data and the Future of Bibliographic Control
 
LOD/LAM Presentation
LOD/LAM PresentationLOD/LAM Presentation
LOD/LAM Presentation
 
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)
 

Dernier

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Dernier (20)

Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
latest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answerslatest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answers
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health Education
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 

It's not rocket surgery - Linked In: ALA 2011

  • 1. It’s Not Rocket-Surgery A brief introduction to linked library data Ross Singer ross.singer@talis.com
  • 3. Tim Berners-Lee http://www.w3.org/People/Berners-Lee/card#i http://viaf.org/viaf/85312226/ LCCN: no 99010609
  • 4. Four Rules • 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.  http://www.w3.org/DesignIssues/LinkedData.html
  • 6.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 19. RDF is a data model not a serialization
  • 21. Triple • Subject (the referent) • Predicate (a property) • Object (the value)
  • 22. Triple • Subject (URI) • Predicate (URI) • Object (URI or Literal)
  • 24.
  • 25.
  • 26.
  • 27. URIs
  • 28. URIs • Unambiguous Identifiers • If two resources have the same URI, they must be referring to the same thing • Dereferenceable • “Follow your nose”
  • 30. Graph • The collection of statements (triples) • Shows the connections between things • We understand the connections, because the predicates have unambiguous meaning • Follow your nose and expand the graph
  • 31. Schemas/Vocabularies • No real similarity to XML Schema • Common source of confusion (e.g. Dublin Core) • No “validation”, per se • constraints only apply for properties and classes, not resources • Unless the statements contradict each other • Mix and match vocabularies to fill out the description across domains
  • 32. • Dublin Core • Bibliontology • FOAF • SKOS • Good Relations • Music Ontology, etc.
  • 34. Open World Assumption • Cannot assume that any source has all of the facts about a resource • Reuse of identifiers allows the augmentation of datasets • There is no “document”, because it’s always a work in progress
  • 45. Too much to go it alone
  • 46. How?
  • 48. Disclaimers • There are currently no standards in actual use • This is not an attempt to “catalog”, merely to model existing data • And a sketchy one at that • No desire to roundtrip, etc. • Just make something that links our data and allows it to be consumed by others
  • 50.
  • 51.
  • 52. Step 1 Identify the discrete resources
  • 53.
  • 54. Let’s assume this is the “referent”
  • 55.
  • 57.
  • 59.
  • 61.
  • 64.
  • 65. But let’s ignore most of that for now
  • 66.
  • 68. Bibliontology (BIBO) http://purl.org/ontology/bibo/
  • 69. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . <http://lib.example.org/collection/13889626> a bibo:Book .
  • 70.
  • 71. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393”, “1403469466” .
  • 73. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . @prefix dcterms: <http://purl.org/dc/terms/> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393”, “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” .
  • 74. So far, just literals
  • 75. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . @prefix dcterms: <http://purl.org/dc/terms/> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> .
  • 76. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdaGr2: <http://RDVocab.info/ElementsGr2/> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/ >. <http://viaf.org/viaf/164665342> rdaGr2:dateOfBirth "1949-01-15" ; a rdaEnt:Person, foaf:Person ; owl:sameAs <http://d-nb.info/gnd/12626242X> ; foaf:name "Raum, Betty", "Raum, Elizabeth", "Raum, Elizabeth A. (1949- ).", "Raum, Elizabeth." .
  • 77. VIAF • SRU interface • LCCNs in VIAF record
  • 78. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . @prefix dcterms: <http://purl.org/dc/terms/> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> ; dcterms:subject <http://viaf.org/viaf/110368892>, <http:// id.loc.gov/authorities/sh2007100949#concept>, <http:// id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/ viaf/158349825> .
  • 79. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdaGr2: <http://RDVocab.info/ElementsGr2/> . @prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/ >. <http://viaf.org/viaf/110368892> rdaGr2:dateOfBirth "1930" ; a rdaEnt:Person, foaf:Person ; owl:sameAs <http://d-nb.info/gnd/107714566>, <http:// dbpedia.org/resource/Buzz_Aldrin> ; foaf:name "Aldrin, Buzz", "Aldrin, Buzz 1930-....", "Aldrin, Buzz, 1930-", "Aldrin, Edwin E.", "Aldrin, Edwin E., 1930-", "Aldrin, Edwin Eugen, 1930-", "Aldrin, Edwin Eugene 1930-", "Aldrin, Edwin Eugene 1930-....", "Aldrin, Edwin Eugene junior 1930-" .
  • 80. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix skos: <http://www.w3.org/2004/02/skos/core#> . <http://id.loc.gov/authorities/sh2007100949#concept> dcterms:created "2007-09-26T00:00:00-04:00"^^<http:// www.w3.org/2001/XMLSchema#dateTime> ; dcterms:modified "2007-10-26T07:54:12-04:00"^^<http:// www.w3.org/2001/XMLSchema#dateTime> ; dcterms:source "Work cat.: Eileen Collins, c2006"@en ; a skos:Concept ; owl:sameAs <info:lc/authorities/sh2007100949> ; skos:inScheme <http://id.loc.gov/authorities#conceptScheme>, <http://id.loc.gov/authorities#topicalTerms> ; skos:prefLabel "Astronauts--United States--Biography--Juvenile literature"@en .
  • 81. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix skos: <http://www.w3.org/2004/02/skos/core#> . <http://id.loc.gov/authorities/sh2008112104#concept> dcterms:created "2008-03-11T00:00:00-04:00"^^<http:// www.w3.org/2001/XMLSchema#dateTime> ; dcterms:modified "2008-03-12T08:08:09-04:00"^^<http:// www.w3.org/2001/XMLSchema#dateTime> ; dcterms:source "Work cat.: How to build a rocket, 2001"@en ; a skos:Concept ; owl:sameAs <info:lc/authorities/sh2008112104> ; skos:inScheme <http://id.loc.gov/authorities#conceptScheme>, <http://id.loc.gov/authorities#topicalTerms> ; skos:prefLabel "Space flight to the moon--Juvenile literature"@en .
  • 82. id.loc.gov • Label lookup service • http://id.loc.gov/authorities/label/ Astronauts--United%20States-- Biography--Juvenile%20Literature redirects to http://id.loc.gov/authorities/ sh2007100949#concept • Full data dumps available
  • 83. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdaEnt: <http://RDVocab.info/uri/schema/FRBRentitiesRDA/ >. <http://viaf.org/viaf/158349825> a rdaEnt:CorporateBody, foaf:Organization ; foaf:name "Apollo Project (Spojené státy americké)", "Apollo Project (U.S.)", "Progetto Apollo (U.S.)", "Project Apollo", "Project Apollo (Spojené státy americké)", "Project Apollo (U.S.)", "Spojené státy americké. Project Apollo", "United States. Project Apollo" .
  • 86. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix rda: <http://RDVocab.info/Elements/> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> ; dcterms:subject <http://viaf.org/viaf/110368892>, <http:// id.loc.gov/authorities/sh2007100949#concept>, <http:// id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/ viaf/158349825> ; rda:placeOfPublication <http://purl.org/NET/marccodes/ countries/ilu#location>, “Chicago, Ill.” .
  • 87. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix skos: <http://www.w3.org/2004/02/skos/core#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix dcterms: <http://purl.org/dc/terms/> . <http://purl.org/NET/marccodes/countries/ilu#location> dcterms:isPartOf <http://purl.org/NET/marccodes/countries/ regions/2#location> ; a <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ; owl:sameAs <http://purl.org/NET/marccodes/gacs/n-us- il#location>, <http://sws.geonames.org/4896861/>, <info:lc/ vocabulary/countries/ilu> ; skos:notation "ilu" ; skos:prefLabel "Illinois"@en .
  • 88. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix cc: <http://creativecommons.org/ns#> . @prefix dcterms: <http://purl.org/dc/terms/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix gn: <http://www.geonames.org/ontology#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix wgs84_pos: <http://www.w3.org/2003/01/geo/wgs84_pos#> . <http://sws.geonames.org/4896861/> gn:alternateName "Estado de Illinois"@es, "State of Illinois"@en, "Иллинойс"@ru ; gn:childrenFeatures <http://sws.geonames.org/4896861/contains.rdf> ; gn:countryCode "US" ; gn:featureClass gn:A ; gn:featureCode <http://www.geonames.org/ontology#A.ADM1> ; gn:locationMap <http://www.geonames.org/4896861/illinois.html> ; gn:name "Illinois" ; gn:officialName "Illinois", "Illinois"@en, "Illinois"@es ; gn:parentADM1 <http://sws.geonames.org/4896861/> ; gn:parentCountry <http://sws.geonames.org/6252001/> ; gn:parentFeature <http://sws.geonames.org/6252001/> ; gn:population "12772888" ; a gn:Feature ; rdfs:isDefinedBy "http://sws.geonames.org/4896861/about.rdf" ; wgs84_pos:alt "191" ; wgs84_pos:lat "40.00032" ; wgs84_pos:long "-89.25037" .
  • 89. Linked MARC Codes • URIs are based on the code, so no lookups are necessary • GACs, Countries, Languages, Musical Genres, Instrument & Voices, Audience, Frequency, and Form of Item • “Official” resources available at id.loc.gov for Languages, GACs and Countries • as SKOS:Concepts
  • 90. RDA Elements • Useful for properties that are specific to library data (statementOfResponsibility, etc.) • Metric crap-tonne of properties • 459, to be exact • very few defined domains or ranges • lots of duplication from other vocabs (NIH)
  • 91. <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> ; dcterms:subject <http://viaf.org/viaf/110368892>, <http:// id.loc.gov/authorities/sh2007100949#concept>, <http:// id.loc.gov/authorities/sh2008112104#concept>, <http://viaf.org/ viaf/158349825> ; rda:placeOfPublication <http://purl.org/NET/marccodes/ countries/ilu#location>, “Chicago, Ill.” ; dcterms:language <http://purl.org/NET/marccodes/languages/ eng#language> .
  • 92. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix skos: <http://www.w3.org/2004/02/skos/core#> . @prefix umbel: <http://umbel.org/umbel#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . <http://purl.org/NET/marccodes/languages/eng#lang> umbel:isAbout <http://id.loc.gov/authorities/ sh85043413#concept> ; a <http://www.lingvoj.org/ontology#Lingvo> ; owl:sameAs <http://lexvo.org/id/iso639-3/eng>, <http:// www.lingvoj.org/lang/en>, <info:lc/vocabulary/languages/eng> ; skos:notation "eng" ; skos:prefLabel "English"@en .
  • 94. owl:sameAs The nuclear option of the semantic web
  • 95. owl:sameAs (taken literally) • Infers that the subject and the object are exactly the same thing • All properties and values appearing on one resource automatically apply to the other
  • 96. @prefix owl: <http://www.w3.org/2002/07/owl#> . <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> ; dcterms:subject <http://viaf.org/viaf/110368892>, <http://id.loc.gov/ authorities/sh2007100949#concept>, <http://id.loc.gov/authorities/ sh2008112104#concept>, <http://viaf.org/viaf/158349825> ; rda:placeOfPublication <http://purl.org/NET/marccodes/countries/ ilu#location>, “Chicago, Ill.” ; dcterms:language <http://purl.org/NET/marccodes/languages/ eng#language> ; owl:sameAs <http://openlibrary.org/books/OL3394932M>, <http:// purl.org/NET/lccn/2005006249#i> .
  • 97. <http://openlibrary.org/books/OL3394932M> rdvocab:note "Includes bibliographical references and index." ; rdvocab:placeOfPublication "Chicago, Ill" ; dc:subject "Aldrin, Buzz -- Juvenile literature.", "Astronauts -- United States -- Biography -- Juvenile literature.", "Project Apollo (U.S.) -- Juvenile literature.", "Space flight to the moon -- Juvenile literature." ; dcterms:extent "p. cm." ; dcterms:identifier "/books/OL3394932M" ; dcterms:issued "2005" ; dcterms:language "eng" ; dcterms:modified "2010-08-10 08:10:33.620330" ; dcterms:publisher "Heinemann Library" ; dcterms:subject [ dcam:memberOf dcterms:DDC ; rdf:value "629.45/0092" ], [ dcam:memberOf dcterms:DDC ; rdf:value "B" ], [ dcam:memberOf dcterms:LCC ; rdf:value "TL789.85.A4 R38 2005" ]; dcterms:title "Buzz Aldrin" ; bibo:authorList (<http://openlibrary.org/authors/OL1425365A> ); bibo:isbn10 "1403469393", "1403469466" ; bibo:lccn "2005006249" .
  • 98. <http://openlibrary.org/books/OL3394932M> j.4:note "Includes bibliographical references and index." ; j.4:placeOfPublication <http://purl.org/NET/marccodes/ilu#location>, "Chicago, Ill" ; j.4:statementOfResponsibility "Elizabeth Raum." ; j.4:titleProper "Buzz Aldrin" ; j.0:commonManifestation <http://openlibrary.org/works/OL5817590W> ; dc:publisher "Heinemann Library" ; dc:subject "Aldrin, Buzz -- Juvenile literature.", "Astronauts -- United States -- Biography -- Juvenile literature.", "Project Apollo (U.S.) -- Juvenile literature.", "Space flight to the moon -- Juvenile literature." ; j.3:creator <http://openlibrary.org/authors/OL1425365A> ; j.3:extent "p. cm." ; j.3:isVersionOf <http://openlibrary.org/works/OL5817590W> ; j.3:issued "2005" ; j.3:language <http://purl.org/NET/marccodes/languages/eng#lang> ; j.3:subject <http://api.talis.com/stores/openlibrary/items/ddc/629450092#class>, <http://api.talis.com/stores/ openlibrary/items/ddc/b#class>, <http://api.talis.com/stores/openlibrary/items/lcc/tl78985a4_r38_2005#class> ; j.3:title "Buzz Aldrin" ; j.3:type "Biography", "Juvenile literature" ; j.1:isbn10 "1403469393", "1403469466" ; j.1:isbn13 "9781403469397", "9781403469465" ; j.1:lccn "2005006249" ; j.1:uri <http://www.loc.gov/catdir/toc/ecip059/2005006249.html> ; a <http://purl.org/ontology/bibo/Book> ; owl:sameAs <http://purl.org/NET/book/isbn/1403469393#book>, <http://purl.org/NET/book/isbn/ 1403469466#book>, <http://purl.org/NET/lccn/2005006249#i>, <http://www4.wiwiss.fu-berlin.de/bookmashup/ books/1403469393>, <http://www4.wiwiss.fu-berlin.de/bookmashup/books/1403469466> ; j.2:depiction <http://covers.openlibrary.org/b/id/1742444-L.jpg>, <http://covers.openlibrary.org/b/id/1742444- M.jpg>, <http://covers.openlibrary.org/b/id/1742444-S.jpg>, <http://covers.openlibrary.org/b/id/1742450-L.jpg>, <http://covers.openlibrary.org/b/id/1742450-M.jpg>, <http://covers.openlibrary.org/b/id/1742450-S.jpg> .
  • 99. Entailed Work/Set Groupings
  • 100. Access to cover images
  • 102. <http://lib.example.org/collection/13889626> a bibo:Book ; bibo:lccn “2005006249” ; bibo:isbn10 “1403469393” , “1403469466” ; dcterms:title “Buzz Aldrin” ; dcterms:dateCopyrighted “2006” ; dcterms:creator <http://viaf.org/viaf/164665342> ; dcterms:subject <http://viaf.org/viaf/110368892>, <http://id.loc.gov/ authorities/sh2007100949#concept>, <http://id.loc.gov/authorities/ sh2008112104#concept>, <http://viaf.org/viaf/158349825> ; rda:placeOfPublication <http://purl.org/NET/marccodes/countries/ ilu#location>, “Chicago, Ill.” ; dcterms:language <http://purl.org/NET/marccodes/languages/ eng#language> ; owl:sameAs <http://openlibrary.org/books/OL3394932M>, <http:// purl.org/NET/lccn/2005006249#i> ; rda:coverageOfTheContent <http://purl.org/NET/marccodes/gacs/ n-us#location>, <http://purl.org/NET/marccodes/gacs/zmo> .
  • 103. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix bibo: <http://purl.org/ontology/bibo/> . @prefix dcterms: <http://purl.org/dc/terms/> . <http://lib.example.org/collection/13889626> dcterms:isPartOf <http://lib.example.org/collection/ series/American-lives> . <http://lib.example.org/collection/series/American-lives> a bibo:Series ; dcterms:title “American lives” ; dcterms:hasPart <http://lib.example.org/collection/ 13889626> .
  • 104.
  • 105.
  • 106.
  • 107.
  • 108. It looks different than we’re used to
  • 109. But it’s not rocket surgery.
  • 110. Thanks! Ross Singer ross.singer@talis.com

Notes de l'éditeur

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. \n
  96. \n
  97. \n
  98. \n
  99. \n
  100. \n
  101. \n
  102. \n
  103. \n
  104. \n
  105. \n
  106. \n
  107. \n
  108. \n
  109. \n