SlideShare a Scribd company logo
Structured Data:
Beyond Rich Snippets
Justin Briggs
Founder, Briggsby
Justin@Briggsby.com
@JustinRBriggs
Taking on new clients
Schema takes you from web to data
Relationships Defined as Triples
Subject ObjectPredicate=> =>
Getting Crazy With Movie Relationships
Psycho (Movie) Alfred HitchcockHas Director=> =>
Structured Data in SERPs
Increase Visibility & CTR
Rich Snippets
•  Reviews
•  People
•  Products
•  Businesses & organizations
•  Recipes
•  Events
•  Music
Encoding with Microdata
Tea Chai Té
An awesome tea shop in a caboose.
7983 SE 13th Ave
Portland, OR
Phone: 503-432-8747
<div itemscope itemtype="http://schema.org/LocalBusiness">
<span itemprop="name">Tea Chai Té</span>
<span itemprop="description">An awesome tea shop in a
caboose.</span>
<div itemprop="address" itemscope itemtype="http://schema.org/
PostalAddress">
<span itemprop="streetAddress">7983 SE 13th Ave</span>
<span itemprop="addressLocality">Portland</span>,
<span itemprop="addressRegion">OR</span>
</div>
Phone: <span itemprop="telephone">503-432-8747</span>
</div>
Encoding with JSON-LD
Tea Chai Té
An awesome tea shop in a caboose.
7983 SE 13th Ave
Portland, OR
Phone: 503-432-8747
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"address": {
"@type": "PostalAddress",
"addressLocality": “Portland”,
"addressRegion": “OR”,
"streetAddress": "7983 SE 13th Ave"
},
"description": "An awesome tea shop in a caboose.",
"name": "Tea Chai Té",
"telephone": "503-432-8747"
}
</script>
Microdata or JSON-LD
•  Works with information already present
•  Minimal effort to qualify existing
information
•  Awkward situations to get certain data
marked up
•  Inserting data on page for markup only
•  Can be added to hyperlinks
Microdata JSON-LD
•  Not dependent on information already
present
•  Compact and direct
•  Duplicate calls already made to build
page
•  No relation to page content
•  Information not normally in markup
They can be used together
Search is rapidly becoming more
mobile & conversational
Historical Model of Search
Web Search
Page Page Page
Search as an Interface
Search
Web Email
Knowledge
Graph
Schema
Mobile
Apps
Documents Databases Applications
Structured Data for Apps
App Deep Links
android-app://{package_id}/{scheme}/{host_path}
Ø  package_id - app ID in Play store
Ø  scheme - http or custom scheme
Ø  host_path - specific content within app
App Deep Link Crawl
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"@id": "http://example.com/gizmos",
"potentialAction": {
"@type": "ViewAction",
"target": "android-app://com.example.android/http/example.com/gizmos"
}
}
</script>
Drive App Engagement
App launch
can be default
behavior…
Clicking this
launches the
app!
App Actions
App Indexing Knowledge Graph App Actions+ =
App Actions
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicGroup",
"name": "Weezer", "potentialAction": {
"@type": "ListenAction",
"target": "android-app://com.spotify.music/http/we.../listen"
}
}
</script>
App Actions
Building an Action Graph
Order me a pizza? Schedule my meeting? Drive my car?
Ok, Google
Personalized cards on
mobile search
Personalized Google Now Cards
Personal
information in
search
Understands
hotel as entity
Pushes
information when
it’s needed
Pushed Search Results
Comes from understanding a
user’s email
Structured Data For Emails
Parsing Our Personal Data
Gmail extracted
structured data
Powers pushed
search results
Actions in the inbox
<div itemscope itemtype="http://schema.org/EventReservation">
<meta itemprop="reservationNumber" content="E123456789"/>
<link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
<div itemprop="underName" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Smith"/>
</div>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
<meta itemprop="name" content="Foo Fighters Concert"/>
<meta itemprop="startDate" content="2017-03-06T19:30:00-08:00"/>
<div itemprop="location" itemscope itemtype="http://schema.org/Place">
<meta itemprop="name" content="AT&T Park"/>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
<meta itemprop="addressLocality" content="San Francisco"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="postalCode" content="94107"/>
<meta itemprop="addressCountry" content="US"/>
</div>
</div>
</div>
</div>
Structured data in emails
can appear in search results
Pushed Search Results
That’s how you
get this!
And this!
Upcoming Events in Knowledge Graph
Event Structured Data
<script type="application/ld+json">
[{
"@context" : "http://schema.org",
"@type" : "MusicEvent",
"name" : "B.B. King",
"startDate" : "2014-04-12T19:30",
"location" : {
"@type" : "Place",
"name" : "Lupo’s Heartbreak Hotel",
"address" : "79 Washington St., Providence, RI"
},
"offers" : {
"@type" : "Offer",
"url" : "https://www.etix.com/ticket/1771656"
}
},
]
</script>
Pushed Events
Events pushed in
search based off
location
Thanks!
hello@briggsby.com

More Related Content

What's hot (19)

PPTX
Deep linking slides
Personagraph
 
PPTX
What You Need to Know About Google App Indexing - SMX West 2016
MobileMoxie
 
PDF
Basics to Search Engine Optimization & App Store Optimization with Pooja Goyal
Pooja Singla
 
PPTX
Firebase App-Indexing - SMX London 2016
David Iwanow
 
PPTX
Emily Grossman App Indexing SMX West 2017
MobileMoxie
 
PPTX
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links - SMX Wes...
MobileMoxie
 
PPTX
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Suzzicks
 
PDF
UaMobitech - App Links and App Indexing API
Matteo Bonifazi
 
PPTX
From Website to Web App - Indexing, Optimizing, and Auditing Experiences for ...
MobileMoxie
 
PPTX
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
MobileMoxie
 
PPTX
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Suzzicks
 
PPTX
Cindy Krum "Mobile-First Indexing for Local SEO" - LocalU 2017
MobileMoxie
 
PPTX
Firebase App Indexing - SMX Advanced
David Iwanow
 
PPTX
App Deep Linking
Pradeep Kumar Sharma
 
PPTX
Cindy Krum Krum Cindy "What SEOs Need To Know About Progressive Web Apps" SMX...
MobileMoxie
 
PPTX
Screaming Frog PPT
SoftProdigy - We know software!
 
PPTX
How Agile Technical SEO Can Add Value To Your SEO Campaign, by Adam Gent
Branded3
 
PPTX
Mobile-Friendly SEO: Why & How? Ari Roth at SMX Israel 2015
Ari Roth
 
PPTX
SMX East - SEO Tools Panel
Abby Hamilton
 
Deep linking slides
Personagraph
 
What You Need to Know About Google App Indexing - SMX West 2016
MobileMoxie
 
Basics to Search Engine Optimization & App Store Optimization with Pooja Goyal
Pooja Singla
 
Firebase App-Indexing - SMX London 2016
David Iwanow
 
Emily Grossman App Indexing SMX West 2017
MobileMoxie
 
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links - SMX Wes...
MobileMoxie
 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Suzzicks
 
UaMobitech - App Links and App Indexing API
Matteo Bonifazi
 
From Website to Web App - Indexing, Optimizing, and Auditing Experiences for ...
MobileMoxie
 
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
MobileMoxie
 
Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015
Suzzicks
 
Cindy Krum "Mobile-First Indexing for Local SEO" - LocalU 2017
MobileMoxie
 
Firebase App Indexing - SMX Advanced
David Iwanow
 
App Deep Linking
Pradeep Kumar Sharma
 
Cindy Krum Krum Cindy "What SEOs Need To Know About Progressive Web Apps" SMX...
MobileMoxie
 
How Agile Technical SEO Can Add Value To Your SEO Campaign, by Adam Gent
Branded3
 
Mobile-Friendly SEO: Why & How? Ari Roth at SMX Israel 2015
Ari Roth
 
SMX East - SEO Tools Panel
Abby Hamilton
 

Viewers also liked (19)

PDF
App Indexing - Increasing mobile visibility with structured data
Justin Briggs
 
PPTX
Light, Camera, Marketing : Video Production for Online Marketing
Justin Briggs
 
PDF
Maximising Your SERP Potential - Enhance your listings with Rich Snippets
Peter Handley
 
PPTX
Advanced Snippet Optimization - SMX Stockholm 2012
Bastian Grimm
 
PPTX
The Real Story on Rich Snippets | Derrick Hicks – Senior Acquisition Marketin...
Conductor
 
PDF
SEMrush Webinar: How to audit and fix thin content with no value - Stephen Ke...
Branded3
 
PDF
SEO in the Age of the Semantic Web by David Amerland
Search Marketing Expo - SMX
 
PDF
Rich Snippets: Beyond Blue Links
Blind Five Year Old
 
PDF
Ranking in Google Since The Advent of The Knowledge Graph
Bill Slawski
 
PDF
Google Freshness and Real Time Ranking Factors - John Shehata
John Shehata
 
PPTX
On site audit with screaming frog gdi
Glen Dimaandal
 
PDF
From Microdata & Schema to rich snippets - SMX Munich - #SMX by @jbobbink
Jan-Willem Bobbink - Freelance SEO Consultant
 
PDF
The Power of Integrated Search: Why SEO & SEM Are Better Together
DemandWave
 
PDF
(Webinar) SEO meet CRO: Conversion Hacks for Organic Search Traffic
SiteTuners Conversion Rate Optimization
 
PPTX
Martes class rich snippets pptx
Aukera
 
PDF
Stephan Spencer - SMX Advanced: Rich Snippets, Schema & Microformats
Search Marketing Expo - SMX
 
PPTX
Brighton SEO - Site Speed for Content Marketers
Tom Bennet
 
PDF
Give Your CMS an SEO Jolt
Bridgeline Digital
 
PDF
Content SEO: Top SEO considerations for online writers and editors
Karen DeJarnette
 
App Indexing - Increasing mobile visibility with structured data
Justin Briggs
 
Light, Camera, Marketing : Video Production for Online Marketing
Justin Briggs
 
Maximising Your SERP Potential - Enhance your listings with Rich Snippets
Peter Handley
 
Advanced Snippet Optimization - SMX Stockholm 2012
Bastian Grimm
 
The Real Story on Rich Snippets | Derrick Hicks – Senior Acquisition Marketin...
Conductor
 
SEMrush Webinar: How to audit and fix thin content with no value - Stephen Ke...
Branded3
 
SEO in the Age of the Semantic Web by David Amerland
Search Marketing Expo - SMX
 
Rich Snippets: Beyond Blue Links
Blind Five Year Old
 
Ranking in Google Since The Advent of The Knowledge Graph
Bill Slawski
 
Google Freshness and Real Time Ranking Factors - John Shehata
John Shehata
 
On site audit with screaming frog gdi
Glen Dimaandal
 
From Microdata & Schema to rich snippets - SMX Munich - #SMX by @jbobbink
Jan-Willem Bobbink - Freelance SEO Consultant
 
The Power of Integrated Search: Why SEO & SEM Are Better Together
DemandWave
 
(Webinar) SEO meet CRO: Conversion Hacks for Organic Search Traffic
SiteTuners Conversion Rate Optimization
 
Martes class rich snippets pptx
Aukera
 
Stephan Spencer - SMX Advanced: Rich Snippets, Schema & Microformats
Search Marketing Expo - SMX
 
Brighton SEO - Site Speed for Content Marketers
Tom Bennet
 
Give Your CMS an SEO Jolt
Bridgeline Digital
 
Content SEO: Top SEO considerations for online writers and editors
Karen DeJarnette
 
Ad

Similar to Advanced Structured Data: Beyond Rich Snippets (20)

PPTX
Advanced Schema Markup Techniques As Told by Super Saiyans
Joe Kelly
 
PDF
Semantic Optimization with Structured Data - SMX Munich
Craig Bradford
 
PPTX
Structured data
Son Dang
 
PPTX
Microdata semantic-extend
Seek Tan
 
PPTX
Linked Data Presentation at TDWI Mpls
Jay Myers
 
PDF
Fun with Python
Narong Intiruk
 
PDF
Searching the Web of Data (Tutorial)
Gerard de Melo
 
PDF
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
Ícaro Medeiros
 
PPTX
Semantic web support for POSH
Dinu Suman
 
PDF
Semantic Web & TYPO3
André Wuttig
 
PPTX
SMX West 2020 - Leveraging Structured Data for Maximum Effect
Abby Hamilton
 
PPTX
BrightonSEO Structured Data by Alexis Sanders
Alexis Sanders
 
PPTX
SMX West Structured Data Practical and Advanced
Alexis Sanders
 
PPTX
Building Viral Social Experiences
Jonathan LeBlanc
 
PPT
Energizing Social Commerce with Open Graph
Praveen Alavilli
 
PPTX
Rest schema design
Kirsten Hunter
 
PPTX
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
Max Prin
 
PPTX
Microformats and SEO
Glenn Jones
 
PDF
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum
 
Advanced Schema Markup Techniques As Told by Super Saiyans
Joe Kelly
 
Semantic Optimization with Structured Data - SMX Munich
Craig Bradford
 
Structured data
Son Dang
 
Microdata semantic-extend
Seek Tan
 
Linked Data Presentation at TDWI Mpls
Jay Myers
 
Fun with Python
Narong Intiruk
 
Searching the Web of Data (Tutorial)
Gerard de Melo
 
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
Ícaro Medeiros
 
Semantic web support for POSH
Dinu Suman
 
Semantic Web & TYPO3
André Wuttig
 
SMX West 2020 - Leveraging Structured Data for Maximum Effect
Abby Hamilton
 
BrightonSEO Structured Data by Alexis Sanders
Alexis Sanders
 
SMX West Structured Data Practical and Advanced
Alexis Sanders
 
Building Viral Social Experiences
Jonathan LeBlanc
 
Energizing Social Commerce with Open Graph
Praveen Alavilli
 
Rest schema design
Kirsten Hunter
 
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
Max Prin
 
Microformats and SEO
Glenn Jones
 
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum
 
Ad

More from Justin Briggs (19)

PPTX
Using Search to Grow Your YouTube Audience
Justin Briggs
 
PPTX
Youtube SEO Strategies: How to Get More Views on YouTube
Justin Briggs
 
PPTX
YouTube SEO: Reverse Engineering YouTube Search
Justin Briggs
 
PDF
Mobile SEO: Closing the Mobile Search Strategy Gap
Justin Briggs
 
PDF
Conversational Search, Entities, and Knowledge Graph - Mozcon 2014
Justin Briggs
 
PPTX
Getting Things To Rank: Improve Search Visibility Using Entities
Justin Briggs
 
PPTX
How To Grow Your Mobile App Audience Using Organic Search
Justin Briggs
 
PPTX
Using Web Search for Mobile App Marketing - ASO (App Store Optimization) at SMX
Justin Briggs
 
PDF
Link Building SMX Advanced 2013
Justin Briggs
 
PDF
Wordpress SEO Presentation at Wordcamp Seattle
Justin Briggs
 
PPTX
Strategic Content Marketing
Justin Briggs
 
PPTX
Technical Hacks for Content Marketing
Justin Briggs
 
PDF
Getting RCS Done as an In-house SEO | SearchLove 2012
Justin Briggs
 
PPTX
SEO for Bloggers - WordCamp Seattle 2012
Justin Briggs
 
PDF
Link Building Reporting
Justin Briggs
 
PPTX
Inbound Marketing Tools - SearchFest
Justin Briggs
 
PPTX
Effective Link Building - Pro SEO Boston 2011
Justin Briggs
 
PPTX
Wordpress SEO - Wordcamp Seattle #wcsea
Justin Briggs
 
PPT
Actionable Metrics and Diagnostics- SMX West 2011
Justin Briggs
 
Using Search to Grow Your YouTube Audience
Justin Briggs
 
Youtube SEO Strategies: How to Get More Views on YouTube
Justin Briggs
 
YouTube SEO: Reverse Engineering YouTube Search
Justin Briggs
 
Mobile SEO: Closing the Mobile Search Strategy Gap
Justin Briggs
 
Conversational Search, Entities, and Knowledge Graph - Mozcon 2014
Justin Briggs
 
Getting Things To Rank: Improve Search Visibility Using Entities
Justin Briggs
 
How To Grow Your Mobile App Audience Using Organic Search
Justin Briggs
 
Using Web Search for Mobile App Marketing - ASO (App Store Optimization) at SMX
Justin Briggs
 
Link Building SMX Advanced 2013
Justin Briggs
 
Wordpress SEO Presentation at Wordcamp Seattle
Justin Briggs
 
Strategic Content Marketing
Justin Briggs
 
Technical Hacks for Content Marketing
Justin Briggs
 
Getting RCS Done as an In-house SEO | SearchLove 2012
Justin Briggs
 
SEO for Bloggers - WordCamp Seattle 2012
Justin Briggs
 
Link Building Reporting
Justin Briggs
 
Inbound Marketing Tools - SearchFest
Justin Briggs
 
Effective Link Building - Pro SEO Boston 2011
Justin Briggs
 
Wordpress SEO - Wordcamp Seattle #wcsea
Justin Briggs
 
Actionable Metrics and Diagnostics- SMX West 2011
Justin Briggs
 

Advanced Structured Data: Beyond Rich Snippets

  • 3. Schema takes you from web to data
  • 4. Relationships Defined as Triples Subject ObjectPredicate=> =>
  • 5. Getting Crazy With Movie Relationships Psycho (Movie) Alfred HitchcockHas Director=> =>
  • 7. Increase Visibility & CTR Rich Snippets •  Reviews •  People •  Products •  Businesses & organizations •  Recipes •  Events •  Music
  • 8. Encoding with Microdata Tea Chai Té An awesome tea shop in a caboose. 7983 SE 13th Ave Portland, OR Phone: 503-432-8747 <div itemscope itemtype="http://schema.org/LocalBusiness"> <span itemprop="name">Tea Chai Té</span> <span itemprop="description">An awesome tea shop in a caboose.</span> <div itemprop="address" itemscope itemtype="http://schema.org/ PostalAddress"> <span itemprop="streetAddress">7983 SE 13th Ave</span> <span itemprop="addressLocality">Portland</span>, <span itemprop="addressRegion">OR</span> </div> Phone: <span itemprop="telephone">503-432-8747</span> </div>
  • 9. Encoding with JSON-LD Tea Chai Té An awesome tea shop in a caboose. 7983 SE 13th Ave Portland, OR Phone: 503-432-8747 <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "LocalBusiness", "address": { "@type": "PostalAddress", "addressLocality": “Portland”, "addressRegion": “OR”, "streetAddress": "7983 SE 13th Ave" }, "description": "An awesome tea shop in a caboose.", "name": "Tea Chai Té", "telephone": "503-432-8747" } </script>
  • 10. Microdata or JSON-LD •  Works with information already present •  Minimal effort to qualify existing information •  Awkward situations to get certain data marked up •  Inserting data on page for markup only •  Can be added to hyperlinks Microdata JSON-LD •  Not dependent on information already present •  Compact and direct •  Duplicate calls already made to build page •  No relation to page content •  Information not normally in markup They can be used together
  • 11. Search is rapidly becoming more mobile & conversational
  • 12. Historical Model of Search Web Search Page Page Page
  • 13. Search as an Interface Search Web Email Knowledge Graph Schema Mobile Apps Documents Databases Applications
  • 15. App Deep Links android-app://{package_id}/{scheme}/{host_path} Ø  package_id - app ID in Play store Ø  scheme - http or custom scheme Ø  host_path - specific content within app
  • 16. App Deep Link Crawl <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "WebPage", "@id": "http://example.com/gizmos", "potentialAction": { "@type": "ViewAction", "target": "android-app://com.example.android/http/example.com/gizmos" } } </script>
  • 17. Drive App Engagement App launch can be default behavior… Clicking this launches the app!
  • 18. App Actions App Indexing Knowledge Graph App Actions+ =
  • 19. App Actions <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "MusicGroup", "name": "Weezer", "potentialAction": { "@type": "ListenAction", "target": "android-app://com.spotify.music/http/we.../listen" } } </script>
  • 21. Building an Action Graph Order me a pizza? Schedule my meeting? Drive my car? Ok, Google
  • 23. Personalized Google Now Cards Personal information in search Understands hotel as entity Pushes information when it’s needed
  • 25. Comes from understanding a user’s email
  • 27. Parsing Our Personal Data Gmail extracted structured data Powers pushed search results
  • 28. Actions in the inbox <div itemscope itemtype="http://schema.org/EventReservation"> <meta itemprop="reservationNumber" content="E123456789"/> <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/> <div itemprop="underName" itemscope itemtype="http://schema.org/Person"> <meta itemprop="name" content="John Smith"/> </div> <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event"> <meta itemprop="name" content="Foo Fighters Concert"/> <meta itemprop="startDate" content="2017-03-06T19:30:00-08:00"/> <div itemprop="location" itemscope itemtype="http://schema.org/Place"> <meta itemprop="name" content="AT&T Park"/> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/> <meta itemprop="addressLocality" content="San Francisco"/> <meta itemprop="addressRegion" content="CA"/> <meta itemprop="postalCode" content="94107"/> <meta itemprop="addressCountry" content="US"/> </div> </div> </div> </div> Structured data in emails can appear in search results
  • 29. Pushed Search Results That’s how you get this! And this!
  • 30. Upcoming Events in Knowledge Graph
  • 31. Event Structured Data <script type="application/ld+json"> [{ "@context" : "http://schema.org", "@type" : "MusicEvent", "name" : "B.B. King", "startDate" : "2014-04-12T19:30", "location" : { "@type" : "Place", "name" : "Lupo’s Heartbreak Hotel", "address" : "79 Washington St., Providence, RI" }, "offers" : { "@type" : "Offer", "url" : "https://www.etix.com/ticket/1771656" } }, ] </script>
  • 32. Pushed Events Events pushed in search based off location