SlideShare ist ein Scribd-Unternehmen logo
1 von 35
Downloaden Sie, um offline zu lesen
Structured Data:
It’s All About The Graph!
1
Benchmark Search & Digital Conference
Manchester
11th September 2019
Richard Wallis
Evangelist and Founder
Data Liberate
richard.wallis@dataliberate.com
@rjw
Independent Consultant, Evangelist & Founder
W3C Community Groups:
• Bibframe2Schema (Chair) – Standardised conversion path(s)
• Schema Bib Extend (Chair) - Bibliographic data
• Schema Architypes (Chair) - Archives
• Financial Industry Business Ontology – Financial schema.org
• Tourism Structured Web Data (Co-Chair)
• Schema Course Extension
• Schema IoT Community
• Educational & Occupational Credentials in Schema.org
richard.wallis@dataliberate.com — @rjw
40+ Years - Computing
29+ Years – Cultural Heritage technology
18+ Years – Semantic Web & Linked Data
Works With:
• Google – Schema.org vocabulary, site, extensions. documentation and community
• OCLC – Global library cooperative
• FIBO – Financial Industry Business Ontology Group
• Various Clients – Implementing/understanding Schema.org:
British Library — Stanford University — Europeana — NLB Singapore
It’s All About The Graph!
Structured Data
Wots a
Graph?!
It’s All About The Graph!
Structured Data
Wots a
Graph?!
Graph picture: metaphactory
It’s All About The Graph!
Structured Data
Wots a
Graph?!
Graph picture: metaphactory
Semantic Graph
Knowledge Graph
Knowledge Graph
Things, not Strings
The Knowledge Graph enables you to
search for things, people or places
that Google knows about—landmarks,
celebrities, cities, sports teams,
buildings, geographical features,
movies, celestial objects, works of art
and more—and instantly get
information that’s relevant to your
query.
Knowledge Graph
Knowledge Graph
Knowledge Graph
Knowledge Graph
Knowledge Graph
Knowledge Graph
Knowledge GraphSearch Index
• An Index of Strings
• Referenced to pages they
come from
• Pages ranked
• Ordered search result pages
• Provides choices for the user
to follow
Knowledge GraphSearch Index
• A dataset of things [entities]
• Description of entities
• Attributes of entities
• Relationships between entities
• Authoritative relationships
• Entity Context
• Powers Rich Content
• Drives context relevant answers:
Who / Where / When / How / What
• An Index of Strings
• Referenced to pages they
come from
• Pages ranked
• Ordered search result pages
• Provides choices for the user
to follow
Knowledge GraphSearch Index
• A dataset of things [entities]
• Description of entities
• Attributes of entities
• Relationships between entities
• Authoritative relationships
• Entity Context
• Powers Rich Content
• Drives context relevant answers:
Who / Where / When / How / What
• An Index of Strings
• Referenced to pages they
come from
• Pages ranked
• Ordered search result pages
• Provides choices for the user
to follow
Both populated by Googlebot
Semantic Graph
Knowledge Graph
How do I get my stuff into it?
Step 1 (SEO)
• Get your pages crawled and indexed
• If Googlebot doesn’t find your pages useful it’s unlikely data will be loaded
Step 2 (Structured Data)
• Describe the things the pages are about – as against the pages themselves
• Use Schema.org
• Relate them to other things – the author is a Person that needs describing
- Don’t just provide a name and hope Google works out who it is!
• Markup all your entities including your Organization – and link them together
• Don’t worry about lists – marking up the individual things is more important
• Preferably use JSON-LD – validate with tools + Google & Schema.org docs
Paris
Weekends in
Paris
MyTourist.org Bob the Expert
A very simple example site ……
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
Paris
Weekends in
Paris
MyTourist.org Bob the Expert
A very simple example site ……
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
Paris
Weekends in
Paris
MyTourist.org Bob the Expert
A very simple example site ……
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "Bob the Expert",
"about": "Paris",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"url": "http://mytourist.org/Paris"
}
Paris
Weekends in
Paris
MyTourist.org Bob the Expert
An example site ……
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "Bob the Expert",
"about": "Paris",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"url": "http://mytourist.org/Paris"
}
A site of unconnected entities
Paris
Weekends in
Paris
Bob the ExpertMyTourist.org
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "Bob the Expert",
"about": "Paris",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"url": "http://mytourist.org/Paris"
}
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"url": "http://mytourist.org"
}
MyTourist.org Bob the Expert
Weekends in
ParisParis
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "Bob the Expert",
"about": "Paris",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"url": "http://mytourist.org/Paris"
}
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"worksFor": "http://mytourist.org",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "http://mytourist.org/bob",
"about": "http://mytourist.org/Paris",
"publisher": "http://mytourist.org",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"url": "http://mytourist.org/Paris"
}
MyTourist.org Bob the Expert
Weekends in
ParisParis
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"worksFor": "http://mytourist.org ",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "http://mytourist.org/bob",
"about": "http://mytourist.org/Paris",
"publisher": "http://mytourist.org",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"url": "http://mytourist.org/Paris"
}
A basic graph of entities
MyTourist.org Bob the Expert
Weekends in
ParisParis
Knowledge Graph?
A basic graph of entities
Possibly could be included – KG: what are these entities?
How do I get my stuff into it?
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"url": "http://mytourist.org/Paris"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"@id": "http://mytourist.org/Paris",
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"sameAs": "https://www.geonames.org/2988507",
"sameAs": "http://www.wikidata.org/entity/Q90",
"url": "http://mytourist.org/Paris"
}
MyTourist.org Bob the Expert
Weekends in
ParisParis
Bob the Expert
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"worksFor": "http://mytourist.org ",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "http://mytourist.org/bob",
"about": "http://mytourist.org/Paris",
"publisher": "http://mytourist.org",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"@id": "http://mytourist.org”,
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"parentOrganization": "http://tminc.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"url": "http://mytourist.org/Paris"
}
{
"@context": "http://schema.org",
"@type": ["City","TouristDestination"],
"@id": "http://mytourist.org/Paris",
"name": "Paris",
"subjectOf": "http://mytourist.org/A1",
"sameAs": "https://www.geonames.org/2988507",
"sameAs": "http://www.wikidata.org/entity/Q90",
"url": "http://mytourist.org/Paris"
}
MyTourist.org Bob the Expert
Weekends in
ParisParis
Bob the Expert
Weekends in
ParisParis
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"worksFor": "http://mytourist.org ",
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"name": "Weekends in Paris",
"author": "http://mytourist.org/bob",
"about": "http://mytourist.org/Paris",
"publisher": "http://mytourist.org",
"url": "http://mytourist.org/A1"
}
{
"@context": "http://schema.org",
"@type": "TravelAgency",
"@id": "http://mytourist.org”,
"name": "MyTourist.org",
"employee": "http://mytourist.org/bob",
"parentOrganization": "http://tminc.org",
"url": "http://mytourist.org"
}
{
"@context": "http://schema.org",
"@type": ”Person",
"@id": "http://mytourist.org/bob”,
"name": "Robert Jones",
"alternateName": "Bob the Expert",
"worksFor": "http://mytourist.org ",
"sameAs": "https://linkedin.com/R.Jones"
"url": "http://mytourist.org/bob"
}
{
"@context": "http://schema.org",
"@type": "Article",
"@id": "http://mytourist.org/A1”,
"name": "Weekends in Paris",
"author": "http://mytourist.org/bob",
"about": "http://mytourist.org/Paris",
"publisher": "http://mytourist.org",
"isPartOf": "http://touristjournal.org/i
"url": "http://mytourist.org/A1"
}
MyTourist.org
MyTourist.org Bob the Expert
Paris
Weekends in
Paris
Knowledge Graph
Potentially these recognizable entities could be included in KG
Knowledge Graph
Hey Google!
Where can I get
me a Chicken
Chow Mein take
out?
- Why?
Knowledge Graph
Hey Google!
Where can I get
me a Chicken
Chow Mein take
out?
- Why?
Query Analysis
Where: location / offeror
Chicken Chow Mein: Thing
Take out: Service type
Date, Time, location of query
Knowledge Graph
Hey Google!
Where can I get
me a Chicken
Chow Mein take
out?
Potential Answer Analysis
Offers for Things:
• Chicken Chow Mein
• An authoritative description?
• Good Reviews?
Offered by Businesses :
• Located nearby
• Authoritative brand
• Provide take out service
• Are open
• Good reviews?
- Why?
Query Analysis
Where: location / offeror
Chicken Chow Mein: Thing
Take out: Service type
Date, Time, location of query
Knowledge Graph
Hey Google!
Where can I get
me a Chicken
Chow Mein take
out?
Potential Answer Analysis
Offers for Things:
• Chicken Chow Mein
• An authoritative description?
• Good Reviews?
Offered by Businesses :
• Located nearby
• Authoritative brand
• Provide take out service
• Are open
• Good reviews?
- Why?
Query Analysis
Where: location / offeror
Chicken Chow Mein: Thing
Take out: Service type
Date, Time, location of query
Answer: best match of query context to the contexts of KG entities
• The [structured] descriptions of the things in your site [can] form a semantic graph
- Use links not strings as references
• The Knowledge Graph wants to include the entities from your graph
- But ideally wants them in context with the rest — Use external links
• Use Schema.org and preferably JSON-LD
• Use the checking tools – Structured Data & Rich Results Test Tools
• Don’t worry too much about page/site descriptions - or lists of things
• Googlebot [should] crawl all your structured data
• Direct linking from answers [may] influence traffic stats
• Bing, Yahoo!, Apple, Amazon and many others also have Knowledge Graphs
It’s All About The Graph!
Structured Data
• The [structured] descriptions of the things in your site [can] form a semantic graph
- Use links not strings as references
• The Knowledge Graph wants to include the entities from your graph
- But ideally wants them in context with the rest — Use external links
• Use Schema.org and preferably JSON-LD
• Use the checking tools – Structured Data & Rich Results Test Tools
• Don’t worry too much about page/site descriptions - or lists of things
• Googlebot [should] crawl all your structured data
• Direct linking from answers [may] influence traffic stats
• Bing, Yahoo!, Apple, Amazon and many others also have Knowledge Graphs
• Schema.org is much more than fancy keywords
• Structured Data powers far more than Rich Snippets
• It’s not rocket science
• But it needs a bit of thought, experience, and understanding
It’s All About The Graph!
Structured Data
Benchmark Search & Digital Conference
Manchester
11th September 2019
Richard Wallis
Evangelist and Founder
Data Liberate
richard.wallis@dataliberate.com
@rjw
It’s All About The Graph!
Structured Data

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (19)

Contextual Computing - Knowledge Graphs & Web of Entities
Contextual Computing - Knowledge Graphs & Web of EntitiesContextual Computing - Knowledge Graphs & Web of Entities
Contextual Computing - Knowledge Graphs & Web of Entities
 
The Web of Data is Our Opportunity
The Web of Data is Our OpportunityThe Web of Data is Our Opportunity
The Web of Data is Our Opportunity
 
FIBO & Schema.org
FIBO & Schema.orgFIBO & Schema.org
FIBO & Schema.org
 
Schema.org - Extending Benefits
Schema.org - Extending BenefitsSchema.org - Extending Benefits
Schema.org - Extending Benefits
 
LD4L OCLC Data Strategy
LD4L OCLC Data StrategyLD4L OCLC Data Strategy
LD4L OCLC Data Strategy
 
Web Driven Revolution For Library Data
Web Driven Revolution For Library DataWeb Driven Revolution For Library Data
Web Driven Revolution For Library Data
 
semantic markup using schema.org
semantic markup using schema.orgsemantic markup using schema.org
semantic markup using schema.org
 
Telling the World and Our Users What We Have
Telling the World and Our Users What We HaveTelling the World and Our Users What We Have
Telling the World and Our Users What We Have
 
The Web of Data is Our Oyster
The Web of Data is Our OysterThe Web of Data is Our Oyster
The Web of Data is Our Oyster
 
Semantic Web and Schema.org
Semantic Web and Schema.orgSemantic Web and Schema.org
Semantic Web and Schema.org
 
Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in Libraries
 
Enterprise Data World 2016 | FIBO extension to Schema.org | FIBO SEO | Christ...
Enterprise Data World 2016 | FIBO extension to Schema.org | FIBO SEO | Christ...Enterprise Data World 2016 | FIBO extension to Schema.org | FIBO SEO | Christ...
Enterprise Data World 2016 | FIBO extension to Schema.org | FIBO SEO | Christ...
 
Extending Schema.org
Extending Schema.orgExtending Schema.org
Extending Schema.org
 
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked DataIFLA LIDASIG Open Session 2017: Introduction to Linked Data
IFLA LIDASIG Open Session 2017: Introduction to Linked Data
 
HTML5 Microdata and Schema.org
HTML5 Microdata and Schema.orgHTML5 Microdata and Schema.org
HTML5 Microdata and Schema.org
 
Linked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the FutureLinked Data, Library Users, and the Discovery Tools of the Future
Linked Data, Library Users, and the Discovery Tools of the Future
 
Rank | Analyse | Lead | Search
Rank | Analyse | Lead | SearchRank | Analyse | Lead | Search
Rank | Analyse | Lead | Search
 
Designing Linked Data Software & Services for Libraries
Designing Linked Data Software & Services for LibrariesDesigning Linked Data Software & Services for Libraries
Designing Linked Data Software & Services for Libraries
 
A possible future role of schema.org for business reporting
A possible future role of schema.org for business reportingA possible future role of schema.org for business reporting
A possible future role of schema.org for business reporting
 

Ähnlich wie Structured Data: It's All About the Graph!

Identifying The Benefit of Linked Data
Identifying The Benefit of Linked DataIdentifying The Benefit of Linked Data
Identifying The Benefit of Linked Data
Richard Wallis
 
Peter Mika's Presentation at SSSW 2011
Peter Mika's Presentation at SSSW 2011Peter Mika's Presentation at SSSW 2011
Peter Mika's Presentation at SSSW 2011
sssw2011
 
Increasing the findability of digital heritage documents by using Search Engi...
Increasing the findability of digital heritage documents by using Search Engi...Increasing the findability of digital heritage documents by using Search Engi...
Increasing the findability of digital heritage documents by using Search Engi...
Andrea Hrckova
 

Ähnlich wie Structured Data: It's All About the Graph! (20)

From Ambition to Go Live SWIB.pdf
From Ambition to Go Live SWIB.pdfFrom Ambition to Go Live SWIB.pdf
From Ambition to Go Live SWIB.pdf
 
From Ambition to Go Live
From Ambition to Go LiveFrom Ambition to Go Live
From Ambition to Go Live
 
CILIP Conference - x metadata evolution the final mile - Richard Wallis
CILIP Conference - x metadata evolution the final mile - Richard WallisCILIP Conference - x metadata evolution the final mile - Richard Wallis
CILIP Conference - x metadata evolution the final mile - Richard Wallis
 
Introduction to web scraping
Introduction to web scrapingIntroduction to web scraping
Introduction to web scraping
 
Semtech bizsemanticsearchtutorial
Semtech bizsemanticsearchtutorialSemtech bizsemanticsearchtutorial
Semtech bizsemanticsearchtutorial
 
Schema.org - An Extending Influence
Schema.org - An Extending InfluenceSchema.org - An Extending Influence
Schema.org - An Extending Influence
 
Digital Marketing & Discoverability for the Performing Arts
Digital Marketing & Discoverability for the Performing ArtsDigital Marketing & Discoverability for the Performing Arts
Digital Marketing & Discoverability for the Performing Arts
 
Ordering the chaos: Creating websites with imperfect data
Ordering the chaos: Creating websites with imperfect dataOrdering the chaos: Creating websites with imperfect data
Ordering the chaos: Creating websites with imperfect data
 
Semantics and Machine Learning
Semantics and Machine LearningSemantics and Machine Learning
Semantics and Machine Learning
 
Semantic Search overview at SSSW 2012
Semantic Search overview at SSSW 2012Semantic Search overview at SSSW 2012
Semantic Search overview at SSSW 2012
 
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
 
Linked (Open) Data
Linked (Open) DataLinked (Open) Data
Linked (Open) Data
 
Питер Мика "Making the web searchable"
Питер Мика "Making the web searchable"Питер Мика "Making the web searchable"
Питер Мика "Making the web searchable"
 
Danbri Drupalcon Export
Danbri Drupalcon ExportDanbri Drupalcon Export
Danbri Drupalcon Export
 
Identifying The Benefit of Linked Data
Identifying The Benefit of Linked DataIdentifying The Benefit of Linked Data
Identifying The Benefit of Linked Data
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.org
 
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
 
Peter Mika's Presentation at SSSW 2011
Peter Mika's Presentation at SSSW 2011Peter Mika's Presentation at SSSW 2011
Peter Mika's Presentation at SSSW 2011
 
Increasing the findability of digital heritage documents by using Search Engi...
Increasing the findability of digital heritage documents by using Search Engi...Increasing the findability of digital heritage documents by using Search Engi...
Increasing the findability of digital heritage documents by using Search Engi...
 

Mehr von Richard Wallis

Mehr von Richard Wallis (7)

Entification: The Route to 'Useful' Library Data
Entification: The Route to 'Useful' Library DataEntification: The Route to 'Useful' Library Data
Entification: The Route to 'Useful' Library Data
 
Links and Entities
Links and EntitiesLinks and Entities
Links and Entities
 
Linked Data: from Library Entities to the Web of Data
Linked Data: from Library Entities to the Web of DataLinked Data: from Library Entities to the Web of Data
Linked Data: from Library Entities to the Web of Data
 
The Power of Sharing Linked Data: Bibliothekartag 2014
The Power of Sharing Linked Data: Bibliothekartag 2014The Power of Sharing Linked Data: Bibliothekartag 2014
The Power of Sharing Linked Data: Bibliothekartag 2014
 
The Power of Sharing Linked Data - ELAG 2014 Workshop
The Power of Sharing Linked Data - ELAG 2014 WorkshopThe Power of Sharing Linked Data - ELAG 2014 Workshop
The Power of Sharing Linked Data - ELAG 2014 Workshop
 
The Simple Power of the Link - ELAG 2014 Workshop
The Simple Power of the Link - ELAG 2014 WorkshopThe Simple Power of the Link - ELAG 2014 Workshop
The Simple Power of the Link - ELAG 2014 Workshop
 
Why schema.org for Libraries
Why schema.org for LibrariesWhy schema.org for Libraries
Why schema.org for Libraries
 

Kürzlich hochgeladen

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 

Structured Data: It's All About the Graph!

  • 1. Structured Data: It’s All About The Graph! 1 Benchmark Search & Digital Conference Manchester 11th September 2019 Richard Wallis Evangelist and Founder Data Liberate richard.wallis@dataliberate.com @rjw
  • 2. Independent Consultant, Evangelist & Founder W3C Community Groups: • Bibframe2Schema (Chair) – Standardised conversion path(s) • Schema Bib Extend (Chair) - Bibliographic data • Schema Architypes (Chair) - Archives • Financial Industry Business Ontology – Financial schema.org • Tourism Structured Web Data (Co-Chair) • Schema Course Extension • Schema IoT Community • Educational & Occupational Credentials in Schema.org richard.wallis@dataliberate.com — @rjw 40+ Years - Computing 29+ Years – Cultural Heritage technology 18+ Years – Semantic Web & Linked Data Works With: • Google – Schema.org vocabulary, site, extensions. documentation and community • OCLC – Global library cooperative • FIBO – Financial Industry Business Ontology Group • Various Clients – Implementing/understanding Schema.org: British Library — Stanford University — Europeana — NLB Singapore
  • 3. It’s All About The Graph! Structured Data Wots a Graph?!
  • 4. It’s All About The Graph! Structured Data Wots a Graph?! Graph picture: metaphactory
  • 5. It’s All About The Graph! Structured Data Wots a Graph?! Graph picture: metaphactory Semantic Graph
  • 7. Knowledge Graph Things, not Strings The Knowledge Graph enables you to search for things, people or places that Google knows about—landmarks, celebrities, cities, sports teams, buildings, geographical features, movies, celestial objects, works of art and more—and instantly get information that’s relevant to your query.
  • 14. Knowledge GraphSearch Index • An Index of Strings • Referenced to pages they come from • Pages ranked • Ordered search result pages • Provides choices for the user to follow
  • 15. Knowledge GraphSearch Index • A dataset of things [entities] • Description of entities • Attributes of entities • Relationships between entities • Authoritative relationships • Entity Context • Powers Rich Content • Drives context relevant answers: Who / Where / When / How / What • An Index of Strings • Referenced to pages they come from • Pages ranked • Ordered search result pages • Provides choices for the user to follow
  • 16. Knowledge GraphSearch Index • A dataset of things [entities] • Description of entities • Attributes of entities • Relationships between entities • Authoritative relationships • Entity Context • Powers Rich Content • Drives context relevant answers: Who / Where / When / How / What • An Index of Strings • Referenced to pages they come from • Pages ranked • Ordered search result pages • Provides choices for the user to follow Both populated by Googlebot Semantic Graph
  • 17. Knowledge Graph How do I get my stuff into it? Step 1 (SEO) • Get your pages crawled and indexed • If Googlebot doesn’t find your pages useful it’s unlikely data will be loaded Step 2 (Structured Data) • Describe the things the pages are about – as against the pages themselves • Use Schema.org • Relate them to other things – the author is a Person that needs describing - Don’t just provide a name and hope Google works out who it is! • Markup all your entities including your Organization – and link them together • Don’t worry about lists – marking up the individual things is more important • Preferably use JSON-LD – validate with tools + Google & Schema.org docs
  • 18. Paris Weekends in Paris MyTourist.org Bob the Expert A very simple example site …… { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" }
  • 19. Paris Weekends in Paris MyTourist.org Bob the Expert A very simple example site …… { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" }
  • 20. Paris Weekends in Paris MyTourist.org Bob the Expert A very simple example site …… { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "Bob the Expert", "about": "Paris", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "url": "http://mytourist.org/Paris" }
  • 21. Paris Weekends in Paris MyTourist.org Bob the Expert An example site …… { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "Bob the Expert", "about": "Paris", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "url": "http://mytourist.org/Paris" } A site of unconnected entities
  • 22. Paris Weekends in Paris Bob the ExpertMyTourist.org { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "Bob the Expert", "about": "Paris", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "url": "http://mytourist.org/Paris" } { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "url": "http://mytourist.org" }
  • 23. MyTourist.org Bob the Expert Weekends in ParisParis { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "Bob the Expert", "about": "Paris", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "url": "http://mytourist.org/Paris" } { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "worksFor": "http://mytourist.org", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "http://mytourist.org/bob", "about": "http://mytourist.org/Paris", "publisher": "http://mytourist.org", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "subjectOf": "http://mytourist.org/A1", "url": "http://mytourist.org/Paris" }
  • 24. MyTourist.org Bob the Expert Weekends in ParisParis { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "worksFor": "http://mytourist.org ", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "http://mytourist.org/bob", "about": "http://mytourist.org/Paris", "publisher": "http://mytourist.org", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "subjectOf": "http://mytourist.org/A1", "url": "http://mytourist.org/Paris" } A basic graph of entities
  • 25. MyTourist.org Bob the Expert Weekends in ParisParis Knowledge Graph? A basic graph of entities Possibly could be included – KG: what are these entities? How do I get my stuff into it?
  • 26. { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "subjectOf": "http://mytourist.org/A1", "url": "http://mytourist.org/Paris" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "@id": "http://mytourist.org/Paris", "name": "Paris", "subjectOf": "http://mytourist.org/A1", "sameAs": "https://www.geonames.org/2988507", "sameAs": "http://www.wikidata.org/entity/Q90", "url": "http://mytourist.org/Paris" } MyTourist.org Bob the Expert Weekends in ParisParis Bob the Expert { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "worksFor": "http://mytourist.org ", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "http://mytourist.org/bob", "about": "http://mytourist.org/Paris", "publisher": "http://mytourist.org", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": "TravelAgency", "@id": "http://mytourist.org”, "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "parentOrganization": "http://tminc.org", "url": "http://mytourist.org" }
  • 27. { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "name": "Paris", "subjectOf": "http://mytourist.org/A1", "url": "http://mytourist.org/Paris" } { "@context": "http://schema.org", "@type": ["City","TouristDestination"], "@id": "http://mytourist.org/Paris", "name": "Paris", "subjectOf": "http://mytourist.org/A1", "sameAs": "https://www.geonames.org/2988507", "sameAs": "http://www.wikidata.org/entity/Q90", "url": "http://mytourist.org/Paris" } MyTourist.org Bob the Expert Weekends in ParisParis Bob the Expert Weekends in ParisParis { "@context": "http://schema.org", "@type": "TravelAgency", "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "name": "Robert Jones", "alternateName": "Bob the Expert", "worksFor": "http://mytourist.org ", "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "name": "Weekends in Paris", "author": "http://mytourist.org/bob", "about": "http://mytourist.org/Paris", "publisher": "http://mytourist.org", "url": "http://mytourist.org/A1" } { "@context": "http://schema.org", "@type": "TravelAgency", "@id": "http://mytourist.org”, "name": "MyTourist.org", "employee": "http://mytourist.org/bob", "parentOrganization": "http://tminc.org", "url": "http://mytourist.org" } { "@context": "http://schema.org", "@type": ”Person", "@id": "http://mytourist.org/bob”, "name": "Robert Jones", "alternateName": "Bob the Expert", "worksFor": "http://mytourist.org ", "sameAs": "https://linkedin.com/R.Jones" "url": "http://mytourist.org/bob" } { "@context": "http://schema.org", "@type": "Article", "@id": "http://mytourist.org/A1”, "name": "Weekends in Paris", "author": "http://mytourist.org/bob", "about": "http://mytourist.org/Paris", "publisher": "http://mytourist.org", "isPartOf": "http://touristjournal.org/i "url": "http://mytourist.org/A1" } MyTourist.org
  • 28. MyTourist.org Bob the Expert Paris Weekends in Paris Knowledge Graph Potentially these recognizable entities could be included in KG
  • 29. Knowledge Graph Hey Google! Where can I get me a Chicken Chow Mein take out? - Why?
  • 30. Knowledge Graph Hey Google! Where can I get me a Chicken Chow Mein take out? - Why? Query Analysis Where: location / offeror Chicken Chow Mein: Thing Take out: Service type Date, Time, location of query
  • 31. Knowledge Graph Hey Google! Where can I get me a Chicken Chow Mein take out? Potential Answer Analysis Offers for Things: • Chicken Chow Mein • An authoritative description? • Good Reviews? Offered by Businesses : • Located nearby • Authoritative brand • Provide take out service • Are open • Good reviews? - Why? Query Analysis Where: location / offeror Chicken Chow Mein: Thing Take out: Service type Date, Time, location of query
  • 32. Knowledge Graph Hey Google! Where can I get me a Chicken Chow Mein take out? Potential Answer Analysis Offers for Things: • Chicken Chow Mein • An authoritative description? • Good Reviews? Offered by Businesses : • Located nearby • Authoritative brand • Provide take out service • Are open • Good reviews? - Why? Query Analysis Where: location / offeror Chicken Chow Mein: Thing Take out: Service type Date, Time, location of query Answer: best match of query context to the contexts of KG entities
  • 33. • The [structured] descriptions of the things in your site [can] form a semantic graph - Use links not strings as references • The Knowledge Graph wants to include the entities from your graph - But ideally wants them in context with the rest — Use external links • Use Schema.org and preferably JSON-LD • Use the checking tools – Structured Data & Rich Results Test Tools • Don’t worry too much about page/site descriptions - or lists of things • Googlebot [should] crawl all your structured data • Direct linking from answers [may] influence traffic stats • Bing, Yahoo!, Apple, Amazon and many others also have Knowledge Graphs It’s All About The Graph! Structured Data
  • 34. • The [structured] descriptions of the things in your site [can] form a semantic graph - Use links not strings as references • The Knowledge Graph wants to include the entities from your graph - But ideally wants them in context with the rest — Use external links • Use Schema.org and preferably JSON-LD • Use the checking tools – Structured Data & Rich Results Test Tools • Don’t worry too much about page/site descriptions - or lists of things • Googlebot [should] crawl all your structured data • Direct linking from answers [may] influence traffic stats • Bing, Yahoo!, Apple, Amazon and many others also have Knowledge Graphs • Schema.org is much more than fancy keywords • Structured Data powers far more than Rich Snippets • It’s not rocket science • But it needs a bit of thought, experience, and understanding It’s All About The Graph! Structured Data
  • 35. Benchmark Search & Digital Conference Manchester 11th September 2019 Richard Wallis Evangelist and Founder Data Liberate richard.wallis@dataliberate.com @rjw It’s All About The Graph! Structured Data