SlideShare a Scribd company logo
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Herbert Van de Sompel, DANS, UGent
@hvdsomp
https://hvdsomp.info
FAIR Signposting
A KISS Approach to a Burning Issue
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
20+ Years Interoperability Efforts Related To Scholarly Objects
OAI-PMH
OAI-ORE
Memento
IIIF
info URI
Web Annotation
ResourceSync
Robust Links
OpenURL
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Cartoon by Patrick Hochstenbach
The FAIR Signposting Profile is an Implementation Guideline
Signposting, since 2015
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Burning Issue: Clarify How Scholarly Objects Exist on the Web
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Burning Issue: Clarify How Scholarly Objects Exist on the Web
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Make it easy for machines to interact with scholarly objects on the
Web
• This is a burning issue because the lack of a uniform interface to
scholarly objects on the web requires ad-hoc platform-specific
solutions for the creation of cross-platform services
• Think of e.g. Zotero, LOCKSS, numerous APIs, …
• There’s not even a uniform way to determine the PID of a
scholarly object from the landing page
• This makes the barrier to entry for the creation of cross-platform
services high. Which tends to lead to centralization, monopolies, lack
of innovation.
Burning Issue: Clarify How Scholarly Objects Exist on the Web
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• The problem has been around for a long time
• OAI-ORE (1) (2008) addressed it in a descriptive way using linked
data technology
• RO-Crate (2) (2019) addresses it in a descriptive and simpler way
using linked data technology
• The problem directly relates to
• FAIR
• FAIR Digital Object Protocol/Framework
both of which are quite on fire
Burning Issue: Clarify How Scholarly Objects Exist on the Web
(1) OAI-ORE ; https://www.openarchives.org/ore/
(2) RO-Crate ; https://www.researchobject.org/ro-crate/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Addresses the problem in a navigational way, by providing
meaningful links (signposts) allowing machines to follow their nose to
obtain the information they are after
• Uses a KISS, standards-based REST/HATEOAS approach consisting
of:
• Typed web links (1)
• IANA-registered relation types (2) defined in formal specifications
• Recognizes the status quo - scholarly objects are represented by
landing pages on the web - but enhances it to empower machines
KISS Approach: FAIR Signposting Profile
(1) RFC8288 – Web Linking ; https://tools.ietf.org/html/rfc8288
(2) IANA Link Relations ; https://www.iana.org/assignments/link-relations/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Concrete Implementation Guideline for Signposting, indicating which
typed links to convey for each of the resources that make up a
scholarly object on the web
• Implementation targets are platforms that host research outputs e.g.
data repositories, institutional repositories, publisher platforms, etc.
• Dataverse implementation currently in Pull Request Status,
courtesy of DANS
• Two complementary approaches to provide typed links:
• Concise set of links provided by-value
• Comprehensive set of links provided by-reference
KISS Approach: FAIR Signposting Profile
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Typed Links By Value (HTTP Link, HTML <link>)
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
HTTP Link (for resources of all media types)
$ curl -i "https://example.org/page/7507"
HTTP/1.1 200 OK
Date: Fri, 9 Oct 2020 19:19:22 GMT
Content-Type: text/html
Content-Length: 25414
Link:
<https://doi.org/10.5061/dryad.5d23f> ; rel="cite-as" ,
<https://orcid.org/0000-0002-1825-0097> ; rel="author" ,
<https://example.org/meta/7507/bibtex> ; rel="describedby"
; type="application/x-bibtex" ,
<https://creativecommons.org/licenses/by/4.0/> ; rel="license" ,
<https://schema.org/ScholarlyArticle> ; rel="type" ,
<https://schema.org/AboutPage> ; rel="type” ,
<https://example.org/file/7507/1> ; rel="item" ; type="application/pdf”
<html lang="en">
<head>
<meta charset="utf-8">
...
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
HTML <link> (for HTML pages)
$ curl -i "https://example.org/page/7507"
HTTP/1.1 200 OK
Date: Fri, 9 Oct 2020 19:19:48 GMT
Content-Type: text/html
Content-Length: 25414
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="cite-as" href="https://doi.org/10.5061/dryad.5d23">
<link rel="author" href="https://orcid.org/0000-0002-1825-0097">
<link rel="describedby" type="application/x-bibtex"
href="https://example.org/meta/7507/bibtex">
<link rel="license"
href="https://creativecommons.org/licenses/by/4.0/">
<link rel="type" href="https://schema.org/ScholarlyArticle">
<link rel="type" href="https://schema.org/AboutPage">
<link rel="item" type="application/pdf”
href="https://example.org/file/7507/1">
…
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Typed Links By Reference (Link Set)
Wilde, E, Van de Sompel H. (2021) Linkset: Media Types and a Link Relation Type for Link Sets
https://datatracker.ietf.org/doc/draft-ietf-httpapi-linkset/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
{
"linkset": [
{
"anchor": "https://example.org/page/7507",
"cite-as": [
{
"href": "https://doi.org/10.5061/dryad.5d23f"
}
],
},
…
{
"anchor": "https://example.org/file/7507/1",
"collection": [
{
"href": "https://example.org/page/7507",
"type": "text/html"
}
]
}
]
}
Link Set in application/linkset+json
Wilde, E, Van de Sompel H. (2021) Linkset: Media Types and a Link Relation Type for Link Sets
https://datatracker.ietf.org/doc/draft-ietf-httpapi-linkset/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Contributes to FAIRs, F, A, and R by informing machines
• what the persistent identifier of a scholarly objects is,
• what type of scholarly object it is,
• where and what its content is,
• where metadata that describes it is,
• which license applies to the scholarly object,
• what the persistent identifier of its author is
• Contributes to FAIRs I by providing this information
• in a uniform way
• in a way that is interoperable with the Web at large
FAIR Signposting Profile
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Protocol
FAIR Digital Objects Forum
https://fairdo.org/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework
Bonino, L. (2021) FAIR Digital Object Framework Documentation
https://fairdigitalobjectframework.org/
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework
Bonino, L. (2021) FAIR Digital Object Framework Documentation
https://fairdigitalobjectframework.org/
• Very much looks like a Link Set
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework
Bonino, L. (2021) FAIR Digital Object Framework Documentation
https://fairdigitalobjectframework.org/
• Content negotiation in an abstract dimension:
• a non-existing concept
• negotiation is about actual document formats
• Content negotiation with the PID:
• assumes control over the PID
• requires further centralization
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework, the Signposting Way
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework, the Signposting Way
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework, the Signposting Way
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework, the Signposting Way
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
FAIR Digital Object Framework with Signposting Extras
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Achieves what the FAIR Digital Object Framework desires by:
• using links, the core ingredient of the web
• using IANA-registered link types defined in formal specifications
• conveying typed links in HTTP Link and HTML <link>
• conveying typed links in Link Sets (soon to be IETF-standardized),
which support semantic interpretation if needed
• devising a navigational approach usable by basic web clients
• not requiring standardization on metadata formats or ontologies as
is essential for descriptive approaches
• not requiring centralized infrastructure
• Bottom line: FAIR Signposting provides a KISS uniform interface for
machine interaction with scholarly objects on the Web by using
existing technology only
FAIR Signposting Profile
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
• Shawn Jones, Martin Klein, Harihar Shankar @ Los Alamos National Laboratory
• Michael L. Nelson @ Old Dominion University
• Simeon Warner @ Cornell University
• Erik Wilde - Axway
• QiQing Ding, Eko Indarto, Wilko Steinhoff, Vyacheslav Tykhonov, Jan van Mansum
@DANS
• Anusuriya Devaraju @ Terrestrial Ecosystem Research Network
• Robert Huber @ PANGEA
• Geoff Bilder, Karl Ward, Joe Wass @ CrossRef
• David Rosenthal @ Stanford University
• Phil Archer, Dominique Guinard – GS1
• Stian Soiland-Reyes – University of Manchester
• Sarven Capadisli - Inrupt
• Jon Kunze – California Digital Library
• Patrick Hochstenbach @ Ghent University
• Luc Boruta @ Thunken
• Enno Meijer @ The Royal Library of The Netherlands
Acknowledgments
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Please spread the word and provide feedback at
https://github.com/hvdsomp/signposting
FAIR Signposting
A KISS Approach to a Burning Issue
"Signposting has a
ridiculously low cost of entry
(if you serve scholarly content
over HTTP, you're already
almost there)"
-
Luc Boruta, thunken.com
FAIR Signposting https://signposting.org/FAIR/
Dataverse Community Meeting, 15 June 2021
Use Case: On Demand Dataset Archiving

More Related Content

What's hot

Data science and Artificial Intelligence
Data science and Artificial IntelligenceData science and Artificial Intelligence
Data science and Artificial Intelligence
Suman Srinivasan
 
COMPUTER PROGRAMMING UNIT 1 Lecture 2
COMPUTER PROGRAMMING UNIT 1 Lecture 2COMPUTER PROGRAMMING UNIT 1 Lecture 2
COMPUTER PROGRAMMING UNIT 1 Lecture 2
Vishal Patil
 
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
Gilt Tech Talks
 
Final year project proposal
Final year project proposalFinal year project proposal
Final year project proposal
Dawood Jan
 
AIML_Unit1.pptx
AIML_Unit1.pptxAIML_Unit1.pptx
AIML_Unit1.pptx
Somnath Kolgiri
 
Future of AI - 2023 07 25.pptx
Future of AI - 2023 07 25.pptxFuture of AI - 2023 07 25.pptx
Future of AI - 2023 07 25.pptx
Greg Makowski
 
Responsible AI
Responsible AIResponsible AI
Responsible AI
Neo4j
 
Prediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptxPrediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptx
kumari36
 
Password locker project
Password locker project Password locker project
Password locker project
Md. Shafiuzzaman Hira
 
Mini Project PPT
Mini Project PPTMini Project PPT
Mini Project PPT
Faiz Ahmad Khan
 
Apple Teacher Program
Apple Teacher ProgramApple Teacher Program
Apple Teacher Program
Tina Peji
 
Draft thank you letter for speakers
Draft thank you letter for speakersDraft thank you letter for speakers
Draft thank you letter for speakers
gracemanzano
 
AI-ML in Business: Unlocking Opportunities and Navigating Challenges
AI-ML in Business: Unlocking Opportunities and Navigating ChallengesAI-ML in Business: Unlocking Opportunities and Navigating Challenges
AI-ML in Business: Unlocking Opportunities and Navigating Challenges
Sivaranjan Goswami
 
AI: AI & Searching
AI: AI & SearchingAI: AI & Searching
AI: AI & Searching
DataminingTools Inc
 
Credit card fraud detection through machine learning
Credit card fraud detection through machine learningCredit card fraud detection through machine learning
Credit card fraud detection through machine learning
dataalcott
 
UAE AI Strategy and Achievements
UAE AI Strategy and AchievementsUAE AI Strategy and Achievements
UAE AI Strategy and Achievements
Saeed Al Dhaheri
 
A whole new mind 새로운 미래가 온다
A whole new mind 새로운 미래가 온다A whole new mind 새로운 미래가 온다
A whole new mind 새로운 미래가 온다Judith Youn
 
Seminar on java
Seminar on javaSeminar on java
Seminar on java
shathika
 
artificial intelligence ppt
artificial intelligence pptartificial intelligence ppt
artificial intelligence ppt
Nitesh Dubey
 

What's hot (20)

Data science and Artificial Intelligence
Data science and Artificial IntelligenceData science and Artificial Intelligence
Data science and Artificial Intelligence
 
COMPUTER PROGRAMMING UNIT 1 Lecture 2
COMPUTER PROGRAMMING UNIT 1 Lecture 2COMPUTER PROGRAMMING UNIT 1 Lecture 2
COMPUTER PROGRAMMING UNIT 1 Lecture 2
 
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
Roadmap for the Trillion Sensor Universe -- a Gilt-hosted, Internet of Things...
 
Final year project proposal
Final year project proposalFinal year project proposal
Final year project proposal
 
AIML_Unit1.pptx
AIML_Unit1.pptxAIML_Unit1.pptx
AIML_Unit1.pptx
 
Future of AI - 2023 07 25.pptx
Future of AI - 2023 07 25.pptxFuture of AI - 2023 07 25.pptx
Future of AI - 2023 07 25.pptx
 
Responsible AI
Responsible AIResponsible AI
Responsible AI
 
Prediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptxPrediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptx
 
Password locker project
Password locker project Password locker project
Password locker project
 
Mini Project PPT
Mini Project PPTMini Project PPT
Mini Project PPT
 
Apple Teacher Program
Apple Teacher ProgramApple Teacher Program
Apple Teacher Program
 
Draft thank you letter for speakers
Draft thank you letter for speakersDraft thank you letter for speakers
Draft thank you letter for speakers
 
AI-ML in Business: Unlocking Opportunities and Navigating Challenges
AI-ML in Business: Unlocking Opportunities and Navigating ChallengesAI-ML in Business: Unlocking Opportunities and Navigating Challenges
AI-ML in Business: Unlocking Opportunities and Navigating Challenges
 
AI: AI & Searching
AI: AI & SearchingAI: AI & Searching
AI: AI & Searching
 
Credit card fraud detection through machine learning
Credit card fraud detection through machine learningCredit card fraud detection through machine learning
Credit card fraud detection through machine learning
 
UAE AI Strategy and Achievements
UAE AI Strategy and AchievementsUAE AI Strategy and Achievements
UAE AI Strategy and Achievements
 
A whole new mind 새로운 미래가 온다
A whole new mind 새로운 미래가 온다A whole new mind 새로운 미래가 온다
A whole new mind 새로운 미래가 온다
 
Seminar on java
Seminar on javaSeminar on java
Seminar on java
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 
artificial intelligence ppt
artificial intelligence pptartificial intelligence ppt
artificial intelligence ppt
 

Similar to FAIR Signposting: A KISS Approach to a Burning Issue

Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data WebData Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
John Breslin
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
Sören Auer
 
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic WebDataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
John Breslin
 
SIOC: Semantic Web for Social Media Sites
SIOC: Semantic Web for Social Media SitesSIOC: Semantic Web for Social Media Sites
SIOC: Semantic Web for Social Media Sites
Uldis Bojars
 
Semantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information SpacesSemantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information Spaces
John Breslin
 
Interlinking Online Communities and Enriching Social Software with the Semant...
Interlinking Online Communities and Enriching Social Software with the Semant...Interlinking Online Communities and Enriching Social Software with the Semant...
Interlinking Online Communities and Enriching Social Software with the Semant...
John Breslin
 
Weaving SIOC into the Web of Linked Data
Weaving SIOC into the Web of Linked DataWeaving SIOC into the Web of Linked Data
Weaving SIOC into the Web of Linked Data
Uldis Bojars
 
Data Portability with SIOC and FOAF
Data Portability with SIOC and FOAFData Portability with SIOC and FOAF
Data Portability with SIOC and FOAF
Uldis Bojars
 
What do we want computers to do for us?
What do we want computers to do for us? What do we want computers to do for us?
What do we want computers to do for us?
Andrea Volpini
 
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Artefactual Systems - AtoM
 
The SIOC Project
The SIOC ProjectThe SIOC Project
The SIOC Project
John Breslin
 
Exploring the Use of Linked Data to Bridge State and Federal Archives
Exploring the Use of Linked Data to Bridge State and Federal ArchivesExploring the Use of Linked Data to Bridge State and Federal Archives
Exploring the Use of Linked Data to Bridge State and Federal ArchivesJon Voss
 
The Social Semantic Web
The Social Semantic WebThe Social Semantic Web
The Social Semantic Web
John Breslin
 
The Social Semantic Web
The Social Semantic WebThe Social Semantic Web
The Social Semantic Web
John Breslin
 
Enhancing the Web Experience
Enhancing the Web ExperienceEnhancing the Web Experience
Enhancing the Web Experience
John Breslin
 
Social web Ontologies
Social web OntologiesSocial web Ontologies
Social web Ontologies
Serge Garlatti
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104
Asa Letourneau
 
The Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of LeipzigThe Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of Leipzig
LOD2 Creating Knowledge out of Interlinked Data
 
Webware Webinar
Webware WebinarWebware Webinar
Webware Webinar
Mike Qaissaunee
 

Similar to FAIR Signposting: A KISS Approach to a Burning Issue (20)

Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data WebData Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
Data Accessibility and Me: Introducing SIOC, FOAF and the Linked Data Web
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic WebDataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
 
SIOC: Semantic Web for Social Media Sites
SIOC: Semantic Web for Social Media SitesSIOC: Semantic Web for Social Media Sites
SIOC: Semantic Web for Social Media Sites
 
Semantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information SpacesSemantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information Spaces
 
Interlinking Online Communities and Enriching Social Software with the Semant...
Interlinking Online Communities and Enriching Social Software with the Semant...Interlinking Online Communities and Enriching Social Software with the Semant...
Interlinking Online Communities and Enriching Social Software with the Semant...
 
Gatenby Vvbad 200909
Gatenby Vvbad 200909Gatenby Vvbad 200909
Gatenby Vvbad 200909
 
Weaving SIOC into the Web of Linked Data
Weaving SIOC into the Web of Linked DataWeaving SIOC into the Web of Linked Data
Weaving SIOC into the Web of Linked Data
 
Data Portability with SIOC and FOAF
Data Portability with SIOC and FOAFData Portability with SIOC and FOAF
Data Portability with SIOC and FOAF
 
What do we want computers to do for us?
What do we want computers to do for us? What do we want computers to do for us?
What do we want computers to do for us?
 
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
Technologie Proche: Imagining the Archival Systems of Tomorrow With the Tools...
 
The SIOC Project
The SIOC ProjectThe SIOC Project
The SIOC Project
 
Exploring the Use of Linked Data to Bridge State and Federal Archives
Exploring the Use of Linked Data to Bridge State and Federal ArchivesExploring the Use of Linked Data to Bridge State and Federal Archives
Exploring the Use of Linked Data to Bridge State and Federal Archives
 
The Social Semantic Web
The Social Semantic WebThe Social Semantic Web
The Social Semantic Web
 
The Social Semantic Web
The Social Semantic WebThe Social Semantic Web
The Social Semantic Web
 
Enhancing the Web Experience
Enhancing the Web ExperienceEnhancing the Web Experience
Enhancing the Web Experience
 
Social web Ontologies
Social web OntologiesSocial web Ontologies
Social web Ontologies
 
Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104Lodlam presentation v1.0 final al20151104
Lodlam presentation v1.0 final al20151104
 
The Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of LeipzigThe Semantic Data Web, Sören Auer, University of Leipzig
The Semantic Data Web, Sören Auer, University of Leipzig
 
Webware Webinar
Webware WebinarWebware Webinar
Webware Webinar
 

More from Herbert Van de Sompel

The web is rotting and what to do about it
The web is rotting and what to do about itThe web is rotting and what to do about it
The web is rotting and what to do about it
Herbert Van de Sompel
 
Researcher Pod: Scholarly Communication Using the Decentralized Web
Researcher Pod: Scholarly Communication Using the Decentralized WebResearcher Pod: Scholarly Communication Using the Decentralized Web
Researcher Pod: Scholarly Communication Using the Decentralized Web
Herbert Van de Sompel
 
Persistent Identification: Easier Said than Done
Persistent Identification: Easier Said than DonePersistent Identification: Easier Said than Done
Persistent Identification: Easier Said than Done
Herbert Van de Sompel
 
Registration / Certification Interoperability Architecture (overlay peer-review)
Registration / Certification Interoperability Architecture (overlay peer-review)Registration / Certification Interoperability Architecture (overlay peer-review)
Registration / Certification Interoperability Architecture (overlay peer-review)
Herbert Van de Sompel
 
Collecting the organizational scholarly record
Collecting the organizational scholarly recordCollecting the organizational scholarly record
Collecting the organizational scholarly record
Herbert Van de Sompel
 
To the Rescue of Scholarly Orphans
To the Rescue of Scholarly OrphansTo the Rescue of Scholarly Orphans
To the Rescue of Scholarly Orphans
Herbert Van de Sompel
 
Almost two decades at LANL
Almost two decades at LANLAlmost two decades at LANL
Almost two decades at LANL
Herbert Van de Sompel
 
Perseverance on Persistence
Perseverance on PersistencePerseverance on Persistence
Perseverance on Persistence
Herbert Van de Sompel
 
Paul Evan Peters Lecture
Paul Evan Peters LecturePaul Evan Peters Lecture
Paul Evan Peters Lecture
Herbert Van de Sompel
 
Achieving Link Integrity for Managed Collections
Achieving Link Integrity for Managed CollectionsAchieving Link Integrity for Managed Collections
Achieving Link Integrity for Managed Collections
Herbert Van de Sompel
 
Signposting Overview (Version November 2017)
Signposting Overview (Version November 2017)Signposting Overview (Version November 2017)
Signposting Overview (Version November 2017)
Herbert Van de Sompel
 
Signposting Overview
Signposting OverviewSignposting Overview
Signposting Overview
Herbert Van de Sompel
 
PID Signposting Pattern
PID Signposting PatternPID Signposting Pattern
PID Signposting Pattern
Herbert Van de Sompel
 
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
 
Interoperability for web based scholarship
Interoperability for web based scholarshipInteroperability for web based scholarship
Interoperability for web based scholarship
Herbert Van de Sompel
 
Reminiscing about interoperability
Reminiscing about interoperabilityReminiscing about interoperability
Reminiscing about interoperability
Herbert Van de Sompel
 
Creating Pockets of Persistence
Creating Pockets of PersistenceCreating Pockets of Persistence
Creating Pockets of Persistence
Herbert Van de Sompel
 
ResourceSync Quick Overview
ResourceSync Quick OverviewResourceSync Quick Overview
ResourceSync Quick Overview
Herbert Van de Sompel
 
Memento 101
Memento 101Memento 101
A Perspective on Archiving the Scholarly Record
A Perspective on Archiving the Scholarly RecordA Perspective on Archiving the Scholarly Record
A Perspective on Archiving the Scholarly Record
Herbert Van de Sompel
 

More from Herbert Van de Sompel (20)

The web is rotting and what to do about it
The web is rotting and what to do about itThe web is rotting and what to do about it
The web is rotting and what to do about it
 
Researcher Pod: Scholarly Communication Using the Decentralized Web
Researcher Pod: Scholarly Communication Using the Decentralized WebResearcher Pod: Scholarly Communication Using the Decentralized Web
Researcher Pod: Scholarly Communication Using the Decentralized Web
 
Persistent Identification: Easier Said than Done
Persistent Identification: Easier Said than DonePersistent Identification: Easier Said than Done
Persistent Identification: Easier Said than Done
 
Registration / Certification Interoperability Architecture (overlay peer-review)
Registration / Certification Interoperability Architecture (overlay peer-review)Registration / Certification Interoperability Architecture (overlay peer-review)
Registration / Certification Interoperability Architecture (overlay peer-review)
 
Collecting the organizational scholarly record
Collecting the organizational scholarly recordCollecting the organizational scholarly record
Collecting the organizational scholarly record
 
To the Rescue of Scholarly Orphans
To the Rescue of Scholarly OrphansTo the Rescue of Scholarly Orphans
To the Rescue of Scholarly Orphans
 
Almost two decades at LANL
Almost two decades at LANLAlmost two decades at LANL
Almost two decades at LANL
 
Perseverance on Persistence
Perseverance on PersistencePerseverance on Persistence
Perseverance on Persistence
 
Paul Evan Peters Lecture
Paul Evan Peters LecturePaul Evan Peters Lecture
Paul Evan Peters Lecture
 
Achieving Link Integrity for Managed Collections
Achieving Link Integrity for Managed CollectionsAchieving Link Integrity for Managed Collections
Achieving Link Integrity for Managed Collections
 
Signposting Overview (Version November 2017)
Signposting Overview (Version November 2017)Signposting Overview (Version November 2017)
Signposting Overview (Version November 2017)
 
Signposting Overview
Signposting OverviewSignposting Overview
Signposting Overview
 
PID Signposting Pattern
PID Signposting PatternPID Signposting Pattern
PID Signposting Pattern
 
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
 
Interoperability for web based scholarship
Interoperability for web based scholarshipInteroperability for web based scholarship
Interoperability for web based scholarship
 
Reminiscing about interoperability
Reminiscing about interoperabilityReminiscing about interoperability
Reminiscing about interoperability
 
Creating Pockets of Persistence
Creating Pockets of PersistenceCreating Pockets of Persistence
Creating Pockets of Persistence
 
ResourceSync Quick Overview
ResourceSync Quick OverviewResourceSync Quick Overview
ResourceSync Quick Overview
 
Memento 101
Memento 101Memento 101
Memento 101
 
A Perspective on Archiving the Scholarly Record
A Perspective on Archiving the Scholarly RecordA Perspective on Archiving the Scholarly Record
A Perspective on Archiving the Scholarly Record
 

Recently uploaded

guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
TristanJasperRamos
 
Output determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CCOutput determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CC
ShahulHameed54211
 
ER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAEER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAE
Himani415946
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 

Recently uploaded (16)

guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
 
Output determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CCOutput determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CC
 
ER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAEER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAE
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 

FAIR Signposting: A KISS Approach to a Burning Issue

  • 1. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Herbert Van de Sompel, DANS, UGent @hvdsomp https://hvdsomp.info FAIR Signposting A KISS Approach to a Burning Issue
  • 2. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 20+ Years Interoperability Efforts Related To Scholarly Objects OAI-PMH OAI-ORE Memento IIIF info URI Web Annotation ResourceSync Robust Links OpenURL
  • 3. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Cartoon by Patrick Hochstenbach The FAIR Signposting Profile is an Implementation Guideline Signposting, since 2015
  • 4. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Burning Issue: Clarify How Scholarly Objects Exist on the Web
  • 5. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Burning Issue: Clarify How Scholarly Objects Exist on the Web
  • 6. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Make it easy for machines to interact with scholarly objects on the Web • This is a burning issue because the lack of a uniform interface to scholarly objects on the web requires ad-hoc platform-specific solutions for the creation of cross-platform services • Think of e.g. Zotero, LOCKSS, numerous APIs, … • There’s not even a uniform way to determine the PID of a scholarly object from the landing page • This makes the barrier to entry for the creation of cross-platform services high. Which tends to lead to centralization, monopolies, lack of innovation. Burning Issue: Clarify How Scholarly Objects Exist on the Web
  • 7. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • The problem has been around for a long time • OAI-ORE (1) (2008) addressed it in a descriptive way using linked data technology • RO-Crate (2) (2019) addresses it in a descriptive and simpler way using linked data technology • The problem directly relates to • FAIR • FAIR Digital Object Protocol/Framework both of which are quite on fire Burning Issue: Clarify How Scholarly Objects Exist on the Web (1) OAI-ORE ; https://www.openarchives.org/ore/ (2) RO-Crate ; https://www.researchobject.org/ro-crate/
  • 8. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Addresses the problem in a navigational way, by providing meaningful links (signposts) allowing machines to follow their nose to obtain the information they are after • Uses a KISS, standards-based REST/HATEOAS approach consisting of: • Typed web links (1) • IANA-registered relation types (2) defined in formal specifications • Recognizes the status quo - scholarly objects are represented by landing pages on the web - but enhances it to empower machines KISS Approach: FAIR Signposting Profile (1) RFC8288 – Web Linking ; https://tools.ietf.org/html/rfc8288 (2) IANA Link Relations ; https://www.iana.org/assignments/link-relations/
  • 9. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Concrete Implementation Guideline for Signposting, indicating which typed links to convey for each of the resources that make up a scholarly object on the web • Implementation targets are platforms that host research outputs e.g. data repositories, institutional repositories, publisher platforms, etc. • Dataverse implementation currently in Pull Request Status, courtesy of DANS • Two complementary approaches to provide typed links: • Concise set of links provided by-value • Comprehensive set of links provided by-reference KISS Approach: FAIR Signposting Profile
  • 10. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Typed Links By Value (HTTP Link, HTML <link>)
  • 11. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 HTTP Link (for resources of all media types) $ curl -i "https://example.org/page/7507" HTTP/1.1 200 OK Date: Fri, 9 Oct 2020 19:19:22 GMT Content-Type: text/html Content-Length: 25414 Link: <https://doi.org/10.5061/dryad.5d23f> ; rel="cite-as" , <https://orcid.org/0000-0002-1825-0097> ; rel="author" , <https://example.org/meta/7507/bibtex> ; rel="describedby" ; type="application/x-bibtex" , <https://creativecommons.org/licenses/by/4.0/> ; rel="license" , <https://schema.org/ScholarlyArticle> ; rel="type" , <https://schema.org/AboutPage> ; rel="type” , <https://example.org/file/7507/1> ; rel="item" ; type="application/pdf” <html lang="en"> <head> <meta charset="utf-8"> ...
  • 12. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 HTML <link> (for HTML pages) $ curl -i "https://example.org/page/7507" HTTP/1.1 200 OK Date: Fri, 9 Oct 2020 19:19:48 GMT Content-Type: text/html Content-Length: 25414 <html lang="en"> <head> <meta charset="utf-8"> <link rel="cite-as" href="https://doi.org/10.5061/dryad.5d23"> <link rel="author" href="https://orcid.org/0000-0002-1825-0097"> <link rel="describedby" type="application/x-bibtex" href="https://example.org/meta/7507/bibtex"> <link rel="license" href="https://creativecommons.org/licenses/by/4.0/"> <link rel="type" href="https://schema.org/ScholarlyArticle"> <link rel="type" href="https://schema.org/AboutPage"> <link rel="item" type="application/pdf” href="https://example.org/file/7507/1"> …
  • 13. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Typed Links By Reference (Link Set) Wilde, E, Van de Sompel H. (2021) Linkset: Media Types and a Link Relation Type for Link Sets https://datatracker.ietf.org/doc/draft-ietf-httpapi-linkset/
  • 14. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 { "linkset": [ { "anchor": "https://example.org/page/7507", "cite-as": [ { "href": "https://doi.org/10.5061/dryad.5d23f" } ], }, … { "anchor": "https://example.org/file/7507/1", "collection": [ { "href": "https://example.org/page/7507", "type": "text/html" } ] } ] } Link Set in application/linkset+json Wilde, E, Van de Sompel H. (2021) Linkset: Media Types and a Link Relation Type for Link Sets https://datatracker.ietf.org/doc/draft-ietf-httpapi-linkset/
  • 15. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Contributes to FAIRs, F, A, and R by informing machines • what the persistent identifier of a scholarly objects is, • what type of scholarly object it is, • where and what its content is, • where metadata that describes it is, • which license applies to the scholarly object, • what the persistent identifier of its author is • Contributes to FAIRs I by providing this information • in a uniform way • in a way that is interoperable with the Web at large FAIR Signposting Profile
  • 16. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Protocol FAIR Digital Objects Forum https://fairdo.org/
  • 17. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework Bonino, L. (2021) FAIR Digital Object Framework Documentation https://fairdigitalobjectframework.org/
  • 18. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework Bonino, L. (2021) FAIR Digital Object Framework Documentation https://fairdigitalobjectframework.org/ • Very much looks like a Link Set
  • 19. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework Bonino, L. (2021) FAIR Digital Object Framework Documentation https://fairdigitalobjectframework.org/ • Content negotiation in an abstract dimension: • a non-existing concept • negotiation is about actual document formats • Content negotiation with the PID: • assumes control over the PID • requires further centralization
  • 20. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework, the Signposting Way
  • 21. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework, the Signposting Way
  • 22. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework, the Signposting Way
  • 23. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework, the Signposting Way
  • 24. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 FAIR Digital Object Framework with Signposting Extras
  • 25. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Achieves what the FAIR Digital Object Framework desires by: • using links, the core ingredient of the web • using IANA-registered link types defined in formal specifications • conveying typed links in HTTP Link and HTML <link> • conveying typed links in Link Sets (soon to be IETF-standardized), which support semantic interpretation if needed • devising a navigational approach usable by basic web clients • not requiring standardization on metadata formats or ontologies as is essential for descriptive approaches • not requiring centralized infrastructure • Bottom line: FAIR Signposting provides a KISS uniform interface for machine interaction with scholarly objects on the Web by using existing technology only FAIR Signposting Profile
  • 26. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 • Shawn Jones, Martin Klein, Harihar Shankar @ Los Alamos National Laboratory • Michael L. Nelson @ Old Dominion University • Simeon Warner @ Cornell University • Erik Wilde - Axway • QiQing Ding, Eko Indarto, Wilko Steinhoff, Vyacheslav Tykhonov, Jan van Mansum @DANS • Anusuriya Devaraju @ Terrestrial Ecosystem Research Network • Robert Huber @ PANGEA • Geoff Bilder, Karl Ward, Joe Wass @ CrossRef • David Rosenthal @ Stanford University • Phil Archer, Dominique Guinard – GS1 • Stian Soiland-Reyes – University of Manchester • Sarven Capadisli - Inrupt • Jon Kunze – California Digital Library • Patrick Hochstenbach @ Ghent University • Luc Boruta @ Thunken • Enno Meijer @ The Royal Library of The Netherlands Acknowledgments
  • 27. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Please spread the word and provide feedback at https://github.com/hvdsomp/signposting FAIR Signposting A KISS Approach to a Burning Issue "Signposting has a ridiculously low cost of entry (if you serve scholarly content over HTTP, you're already almost there)" - Luc Boruta, thunken.com
  • 28. FAIR Signposting https://signposting.org/FAIR/ Dataverse Community Meeting, 15 June 2021 Use Case: On Demand Dataset Archiving

Editor's Notes

  1. Two factors: burning issue & a solution as simple as possible to implement
  2. All link types IANA registered Cardinality of links Media types Collection link allows to climb back up to landing page and resources linked from there Type: schema.org but can obviously use other Content resources can override info at landing page
  3. Linkset motivation: large number of links, single point of access to all links, content resources can’t provide link (reside at 3rd party, don’t know they belong to an object)
  4. FDOF Identifier Record = Link Set (shows all links) Content Negotiation in Abstract Dimension Content Negotiation with PID, which assumes all info available there, i.e. further centralization and need for repo-to-resolver sync
  5. FDOF Identifier Record = Link Set (shows all links) Content Negotiation in Abstract Dimension Content Negotiation with PID, which assumes all info available there, i.e. further centralization and need for repo-to-resolver sync