SlideShare a Scribd company logo
1 of 35
Download to read offline
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

More Related Content

What's hot

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 EntitiesRichard Wallis
 
The Web of Data is Our Opportunity
The Web of Data is Our OpportunityThe Web of Data is Our Opportunity
The Web of Data is Our OpportunityRichard Wallis
 
Schema.org - Extending Benefits
Schema.org - Extending BenefitsSchema.org - Extending Benefits
Schema.org - Extending BenefitsRichard Wallis
 
LD4L OCLC Data Strategy
LD4L OCLC Data StrategyLD4L OCLC Data Strategy
LD4L OCLC Data StrategyRichard Wallis
 
Web Driven Revolution For Library Data
Web Driven Revolution For Library DataWeb Driven Revolution For Library Data
Web Driven Revolution For Library DataRichard Wallis
 
semantic markup using schema.org
semantic markup using schema.orgsemantic markup using schema.org
semantic markup using schema.orgJoshua Shinavier
 
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 HaveRichard Wallis
 
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 OysterRichard Wallis
 
Semantic Web and Schema.org
Semantic Web and Schema.orgSemantic Web and Schema.org
Semantic Web and Schema.orgrvguha
 
Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in LibrariesRichard Wallis
 
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...Christopher Regan
 
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 DataLars G. Svensson
 
HTML5 Microdata and Schema.org
HTML5 Microdata and Schema.orgHTML5 Microdata and Schema.org
HTML5 Microdata and Schema.orgJason Ronallo
 
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 FutureEmily Nimsakont
 
Rank | Analyse | Lead | Search
Rank | Analyse | Lead | SearchRank | Analyse | Lead | Search
Rank | Analyse | Lead | Searchsopekmir
 
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 LibrariesRichard Wallis
 
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 reportingsopekmir
 

What's hot (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
 

Similar to Structured Data: It's All About the Graph!

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.pdfRichardWallis3
 
From Ambition to Go Live
From Ambition to Go LiveFrom Ambition to Go Live
From Ambition to Go LiveRichard Wallis
 
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 WallisCILIP
 
Introduction to web scraping
Introduction to web scrapingIntroduction to web scraping
Introduction to web scrapingDario Cottafava
 
Semtech bizsemanticsearchtutorial
Semtech bizsemanticsearchtutorialSemtech bizsemanticsearchtutorial
Semtech bizsemanticsearchtutorialBarbara Starr
 
Schema.org - An Extending Influence
Schema.org - An Extending InfluenceSchema.org - An Extending Influence
Schema.org - An Extending InfluenceRichard Wallis
 
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 dataAndy Stretton
 
Semantic Search overview at SSSW 2012
Semantic Search overview at SSSW 2012Semantic Search overview at SSSW 2012
Semantic Search overview at SSSW 2012Peter Mika
 
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 LibraryRichard Wallis
 
Питер Мика "Making the web searchable"
Питер Мика "Making the web searchable"Питер Мика "Making the web searchable"
Питер Мика "Making the web searchable"Yandex
 
Identifying The Benefit of Linked Data
Identifying The Benefit of Linked DataIdentifying The Benefit of Linked Data
Identifying The Benefit of Linked DataRichard Wallis
 
Semantic framework for web scraping.
Semantic framework for web scraping.Semantic framework for web scraping.
Semantic framework for web scraping.Shyjal Raazi
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgRichard Wallis
 
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 PracticeDan Brickley
 
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 2011sssw2011
 
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
 

Similar to 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...
 

More from Richard Wallis

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 DataRichard Wallis
 
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 DataRichard Wallis
 
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 2014Richard Wallis
 
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 WorkshopRichard Wallis
 
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 WorkshopRichard Wallis
 
Why schema.org for Libraries
Why schema.org for LibrariesWhy schema.org for Libraries
Why schema.org for LibrariesRichard Wallis
 

More from 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
 

Recently uploaded

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Recently uploaded (20)

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

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