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?

Schema.org where did that come from?
Schema.org where did that come from?Schema.org where did that come from?
Schema.org where did that come from?Richard Wallis
 
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
 
Schema.org - Extending Benefits
Schema.org - Extending BenefitsSchema.org - Extending Benefits
Schema.org - Extending BenefitsRichard 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: Where did that come from!
Schema.org: Where did that come from!Schema.org: Where did that come from!
Schema.org: Where did that come from!Richard Wallis
 
Contextual Computing: Laying a Global Data Foundation
Contextual Computing: Laying a Global Data FoundationContextual Computing: Laying a Global Data Foundation
Contextual Computing: Laying a Global Data FoundationRichard 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
 
Web Driven Revolution For Library Data
Web Driven Revolution For Library DataWeb Driven Revolution For Library Data
Web Driven Revolution For Library DataRichard Wallis
 
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
 
LD4L OCLC Data Strategy
LD4L OCLC Data StrategyLD4L OCLC Data Strategy
LD4L OCLC Data StrategyRichard Wallis
 
They have left the building: The Web Route to Library Users
They have left the building: The Web Route to Library UsersThey have left the building: The Web Route to Library Users
They have left the building: The Web Route to Library UsersRichard Wallis
 
Using schema.org to improve SEO
Using schema.org to improve SEOUsing schema.org to improve SEO
Using schema.org to improve SEOscorlosquet
 
Linked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve MeyerLinked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve MeyerWiLS
 
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
 
Towards Multidimensional Web Archive Access (IIPC 2016)
Towards Multidimensional Web Archive Access (IIPC 2016)Towards Multidimensional Web Archive Access (IIPC 2016)
Towards Multidimensional Web Archive Access (IIPC 2016)TimelessFuture
 
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
 
Rank | Analyse | Lead | Search
Rank | Analyse | Lead | SearchRank | Analyse | Lead | Search
Rank | Analyse | Lead | Searchsopekmir
 
Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in LibrariesRichard Wallis
 

Was ist angesagt? (20)

Schema.org where did that come from?
Schema.org where did that come from?Schema.org where did that come from?
Schema.org where did that come from?
 
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
 
Schema.org - Extending Benefits
Schema.org - Extending BenefitsSchema.org - Extending Benefits
Schema.org - Extending Benefits
 
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
 
Schema.org: Where did that come from!
Schema.org: Where did that come from!Schema.org: Where did that come from!
Schema.org: Where did that come from!
 
Contextual Computing: Laying a Global Data Foundation
Contextual Computing: Laying a Global Data FoundationContextual Computing: Laying a Global Data Foundation
Contextual Computing: Laying a Global Data Foundation
 
Extending Schema.org
Extending Schema.orgExtending Schema.org
Extending Schema.org
 
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
 
Web Driven Revolution For Library Data
Web Driven Revolution For Library DataWeb Driven Revolution For Library Data
Web Driven Revolution For Library Data
 
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
 
LD4L OCLC Data Strategy
LD4L OCLC Data StrategyLD4L OCLC Data Strategy
LD4L OCLC Data Strategy
 
They have left the building: The Web Route to Library Users
They have left the building: The Web Route to Library UsersThey have left the building: The Web Route to Library Users
They have left the building: The Web Route to Library Users
 
Using schema.org to improve SEO
Using schema.org to improve SEOUsing schema.org to improve SEO
Using schema.org to improve SEO
 
Linked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve MeyerLinked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve Meyer
 
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
 
Towards Multidimensional Web Archive Access (IIPC 2016)
Towards Multidimensional Web Archive Access (IIPC 2016)Towards Multidimensional Web Archive Access (IIPC 2016)
Towards Multidimensional Web Archive Access (IIPC 2016)
 
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
 
Rank | Analyse | Lead | Search
Rank | Analyse | Lead | SearchRank | Analyse | Lead | Search
Rank | Analyse | Lead | Search
 
Linked Data in Libraries
Linked Data in LibrariesLinked Data in Libraries
Linked Data in Libraries
 
Thompson 6-jun15-final
Thompson 6-jun15-finalThompson 6-jun15-final
Thompson 6-jun15-final
 

Ähnlich wie Structured Data: It's All about the Graph | Richard Wallis, Data Liberate

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
 
Питер Мика "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
 
Large-Scale Semantic Search
Large-Scale Semantic SearchLarge-Scale Semantic Search
Large-Scale Semantic SearchRoi Blanco
 

Ähnlich wie Structured Data: It's All about the Graph | Richard Wallis, Data Liberate (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
 
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...
 
Large-Scale Semantic Search
Large-Scale Semantic SearchLarge-Scale Semantic Search
Large-Scale Semantic Search
 

Mehr von Click Consult (Part of Ceuta Group)

How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys London
How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys LondonHow Blockchain Will Impact Search Engines | Victoria Olsina, Consensys London
How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys LondonClick Consult (Part of Ceuta Group)
 
Why Google Isn't Giving Update Advice Anymore | John Warner, Click Consult
Why Google Isn't Giving Update Advice Anymore | John Warner, Click ConsultWhy Google Isn't Giving Update Advice Anymore | John Warner, Click Consult
Why Google Isn't Giving Update Advice Anymore | John Warner, Click ConsultClick Consult (Part of Ceuta Group)
 
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon Europe
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon EuropeData Visualisation in SEO (Digital Marketing) | Omi Sido, Canon Europe
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon EuropeClick Consult (Part of Ceuta Group)
 
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...Click Consult (Part of Ceuta Group)
 
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO Consultant
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO ConsultantSEO Tactics to Implement Tonight | Lukasz Zelezny, SEO Consultant
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO ConsultantClick Consult (Part of Ceuta Group)
 
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, Ahrefs
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, AhrefsHow to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, Ahrefs
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, AhrefsClick Consult (Part of Ceuta Group)
 
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...Click Consult (Part of Ceuta Group)
 
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONE
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONEContent Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONE
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONEClick Consult (Part of Ceuta Group)
 
How Your Audience Will Believe Anything – The Psychology Behind the Fake News
How Your Audience Will Believe Anything – The Psychology Behind the Fake NewsHow Your Audience Will Believe Anything – The Psychology Behind the Fake News
How Your Audience Will Believe Anything – The Psychology Behind the Fake NewsClick Consult (Part of Ceuta Group)
 
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...Click Consult (Part of Ceuta Group)
 
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...Click Consult (Part of Ceuta Group)
 
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...Click Consult (Part of Ceuta Group)
 
Stop Wasting Time! 5 Steps to Automate Your Google Analytics Reporting
Stop Wasting Time! 5 Steps to Automate Your Google Analytics ReportingStop Wasting Time! 5 Steps to Automate Your Google Analytics Reporting
Stop Wasting Time! 5 Steps to Automate Your Google Analytics ReportingClick Consult (Part of Ceuta Group)
 
Are We in Danger of Losing Sight of Our Objectives and Strategies
Are We in Danger of Losing Sight of Our Objectives and StrategiesAre We in Danger of Losing Sight of Our Objectives and Strategies
Are We in Danger of Losing Sight of Our Objectives and StrategiesClick Consult (Part of Ceuta Group)
 

Mehr von Click Consult (Part of Ceuta Group) (20)

How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys London
How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys LondonHow Blockchain Will Impact Search Engines | Victoria Olsina, Consensys London
How Blockchain Will Impact Search Engines | Victoria Olsina, Consensys London
 
Flatpack Your SEO | Arnoldo Cabrera, IKEA
Flatpack Your SEO | Arnoldo Cabrera, IKEAFlatpack Your SEO | Arnoldo Cabrera, IKEA
Flatpack Your SEO | Arnoldo Cabrera, IKEA
 
Why Google Isn't Giving Update Advice Anymore | John Warner, Click Consult
Why Google Isn't Giving Update Advice Anymore | John Warner, Click ConsultWhy Google Isn't Giving Update Advice Anymore | John Warner, Click Consult
Why Google Isn't Giving Update Advice Anymore | John Warner, Click Consult
 
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon Europe
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon EuropeData Visualisation in SEO (Digital Marketing) | Omi Sido, Canon Europe
Data Visualisation in SEO (Digital Marketing) | Omi Sido, Canon Europe
 
Dashboard Strategy | Nick Wilsdon, Vodafone
Dashboard Strategy | Nick Wilsdon, VodafoneDashboard Strategy | Nick Wilsdon, Vodafone
Dashboard Strategy | Nick Wilsdon, Vodafone
 
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...
Do We Learn More from Our SEO Failures than Our Successes? | Martin Williams,...
 
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO Consultant
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO ConsultantSEO Tactics to Implement Tonight | Lukasz Zelezny, SEO Consultant
SEO Tactics to Implement Tonight | Lukasz Zelezny, SEO Consultant
 
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, Ahrefs
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, AhrefsHow to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, Ahrefs
How to Start a Link Building Campaign in 15 Minutes | Joshua Hardwick, Ahrefs
 
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...
Inclusive Marketing: Optimising Life and Business | Ellie England, Microsoft ...
 
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONE
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONEContent Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONE
Content Marketing on a Gargantuan Scale | Dane Brookes, Liverpool ONE
 
How Your Audience Will Believe Anything – The Psychology Behind the Fake News
How Your Audience Will Believe Anything – The Psychology Behind the Fake NewsHow Your Audience Will Believe Anything – The Psychology Behind the Fake News
How Your Audience Will Believe Anything – The Psychology Behind the Fake News
 
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...
Let’s do AI – How Artificial Intelligence is Amplifying Human and Also Market...
 
How to Grow a Niche Audience Using Video Content
How to Grow a Niche Audience Using Video ContentHow to Grow a Niche Audience Using Video Content
How to Grow a Niche Audience Using Video Content
 
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...
Understanding Alexa Skills: How to Add Amazon’s Market-Leading Device Into Yo...
 
The Correlation Between Technical SEO and Rankings
The Correlation Between Technical SEO and RankingsThe Correlation Between Technical SEO and Rankings
The Correlation Between Technical SEO and Rankings
 
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...
5 Weeks to Make It – How to Keep Your Cool and Switch a Major Brand Online in...
 
Stop Wasting Time! 5 Steps to Automate Your Google Analytics Reporting
Stop Wasting Time! 5 Steps to Automate Your Google Analytics ReportingStop Wasting Time! 5 Steps to Automate Your Google Analytics Reporting
Stop Wasting Time! 5 Steps to Automate Your Google Analytics Reporting
 
Machine Learning: Friend or Foe?
Machine Learning: Friend or Foe?Machine Learning: Friend or Foe?
Machine Learning: Friend or Foe?
 
Content Strategy & SEO – It’s a Match!
Content Strategy & SEO – It’s a Match!Content Strategy & SEO – It’s a Match!
Content Strategy & SEO – It’s a Match!
 
Are We in Danger of Losing Sight of Our Objectives and Strategies
Are We in Danger of Losing Sight of Our Objectives and StrategiesAre We in Danger of Losing Sight of Our Objectives and Strategies
Are We in Danger of Losing Sight of Our Objectives and Strategies
 

Kürzlich hochgeladen

15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing StrategyBlue Atlas Marketing
 
The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...sowmyrao14
 
Introduction to marketing Management Notes
Introduction to marketing Management NotesIntroduction to marketing Management Notes
Introduction to marketing Management NotesKiranTiwari42
 
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...shrutimishraqt
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainBanyanbrain
 
History of JWT by The Knowledge Center.pdf
History of JWT by The Knowledge Center.pdfHistory of JWT by The Knowledge Center.pdf
History of JWT by The Knowledge Center.pdfwilliam charnock
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internetnehapardhi711
 
8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketingpshirsat
 
SEO and Digital PR - How to Connect Your Teams to Maximise Success
SEO and Digital PR - How to Connect Your Teams to Maximise SuccessSEO and Digital PR - How to Connect Your Teams to Maximise Success
SEO and Digital PR - How to Connect Your Teams to Maximise SuccessLiv Day
 
Professional Sales Representative by Sahil Srivastava.pptx
Professional Sales Representative by Sahil Srivastava.pptxProfessional Sales Representative by Sahil Srivastava.pptx
Professional Sales Representative by Sahil Srivastava.pptxSahil Srivastava
 
Unlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingUnlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingDaniel
 
Navigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessNavigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessElizabeth Moore
 
Gen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfGen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfMedia Logic
 
social media optimization complete indroduction
social media optimization complete indroductionsocial media optimization complete indroduction
social media optimization complete indroductioninfoshraddha747
 
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local LeadsSearch Engine Journal
 
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Marketing BRANDING
 
Exploring the Impact of Social Media Trends on Society.pdf
Exploring the Impact of Social Media Trends on Society.pdfExploring the Impact of Social Media Trends on Society.pdf
Exploring the Impact of Social Media Trends on Society.pdfolivalibereo
 
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...Associazione Digital Days
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar CManojkumar C
 
Understand the Key differences between SMO and SMM
Understand the Key differences between SMO and SMMUnderstand the Key differences between SMO and SMM
Understand the Key differences between SMO and SMMsearchextensionin
 

Kürzlich hochgeladen (20)

15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy15 Tactics to Scale Your Trade Show Marketing Strategy
15 Tactics to Scale Your Trade Show Marketing Strategy
 
The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...The Evolution of Internet : How consumers use technology and its impact on th...
The Evolution of Internet : How consumers use technology and its impact on th...
 
Introduction to marketing Management Notes
Introduction to marketing Management NotesIntroduction to marketing Management Notes
Introduction to marketing Management Notes
 
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...Bamboo Charcoal Toothpaste By Phyto Atomy  For More Details Message On WhatsA...
Bamboo Charcoal Toothpaste By Phyto Atomy For More Details Message On WhatsA...
 
A Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | BanyanbrainA Comprehensive Guide to Technical SEO | Banyanbrain
A Comprehensive Guide to Technical SEO | Banyanbrain
 
History of JWT by The Knowledge Center.pdf
History of JWT by The Knowledge Center.pdfHistory of JWT by The Knowledge Center.pdf
History of JWT by The Knowledge Center.pdf
 
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the InternetExploring Web 3.0 Growth marketing: Navigating the Future of the Internet
Exploring Web 3.0 Growth marketing: Navigating the Future of the Internet
 
8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing8 distribution in rural mkts.ppt Rural Marketing
8 distribution in rural mkts.ppt Rural Marketing
 
SEO and Digital PR - How to Connect Your Teams to Maximise Success
SEO and Digital PR - How to Connect Your Teams to Maximise SuccessSEO and Digital PR - How to Connect Your Teams to Maximise Success
SEO and Digital PR - How to Connect Your Teams to Maximise Success
 
Professional Sales Representative by Sahil Srivastava.pptx
Professional Sales Representative by Sahil Srivastava.pptxProfessional Sales Representative by Sahil Srivastava.pptx
Professional Sales Representative by Sahil Srivastava.pptx
 
Unlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate MarketingUnlocking Passive Income: The Power of Affiliate Marketing
Unlocking Passive Income: The Power of Affiliate Marketing
 
Navigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for SuccessNavigating Global Markets and Strategies for Success
Navigating Global Markets and Strategies for Success
 
Gen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdfGen Z and Millennial Debit Card Use Survey.pdf
Gen Z and Millennial Debit Card Use Survey.pdf
 
social media optimization complete indroduction
social media optimization complete indroductionsocial media optimization complete indroduction
social media optimization complete indroduction
 
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads2024's Top PPC Tactics: Triple Your Google Ads Local Leads
2024's Top PPC Tactics: Triple Your Google Ads Local Leads
 
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
Agencia Marketing Branding Measurement Certification Google Ads Abril 2024
 
Exploring the Impact of Social Media Trends on Society.pdf
Exploring the Impact of Social Media Trends on Society.pdfExploring the Impact of Social Media Trends on Society.pdf
Exploring the Impact of Social Media Trends on Society.pdf
 
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...
Francesco d’Angela, Service Designer di @HintoGroup- “Oltre la Frontiera Crea...
 
top marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar Ctop marketing posters - Fresh Spar Technologies - Manojkumar C
top marketing posters - Fresh Spar Technologies - Manojkumar C
 
Understand the Key differences between SMO and SMM
Understand the Key differences between SMO and SMMUnderstand the Key differences between SMO and SMM
Understand the Key differences between SMO and SMM
 

Structured Data: It's All about the Graph | Richard Wallis, Data Liberate

  • 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