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?

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
 

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!

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
 

Ä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

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
 

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

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
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
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
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 

Kürzlich hochgeladen (20)

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
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
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
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
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
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 

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