SlideShare una empresa de Scribd logo
1 de 75
#SMX #24a1 @AlexisKSanders
Game (while we wait!): Find 5 errors in this JSON-LD.
<script type="application/ld-json">
{
"@context": "http://schema.org",
"@type": “Product",
"name": "Super Product!",
"image": "https://example.com/image.jpg"
"offers": {
"@type": "Offers",
"priceCurrency": "USD",
"price": "12.99",
}
}
</script>
Clue (for two errors):
#SMX #24a1 @AlexisKSanders
Successful SEO Using Markup & Structured Data
Structured data
for SEO =
annotating vital
elements on a
page to support
search engines.
#SMX #24a1 @AlexisKSanders
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Alexis Sanders",
"jobTitle": "Technical SEO Manager",
"sameAs": "https://twitter.com/AlexisKSanders",
"worksFor": {
"@type": "Organization",
"name": "Merkle",
"url": "https://www.merkleinc.com"
},
"url": "https://technicalseo.expert"
}
</script>
#SMX #24a1 @AlexisKSanders
Merkle SEO team works across a vast array of clients
#SMX #24a1 @AlexisKSanders
I’m Sophia’s #ProudAunt too.
"relatedTo": {
"@type": "Person",
"name": "Sophia"
}
#SMX #24a1 @AlexisKSanders
<script type="application/ld-json">
{
"@context": "http://schema.org",
"@type": “Product",
"name": "Super Product!",
"image": "https://example.com/image.jpg"
"offers": {
"@type": "Offers",
"priceCurrency": "USD",
"price": "12.99",
}
}
</script>
 +
 Straight quote
 Comma after (item) property
 Offer
 No comma for last property in group
Answers
#SMX #24a1 @AlexisKSanders
• Overview
• Why we <3 it
• Practical
• Advanced
• Implementing A-Z (hopefully not zzz)
• Common pitfalls
Agenda
#SMX #24a1 @AlexisKSanders
Structured data
n. Information with a high degree of organization.
Structured DataUnstructured Data (e.g., text)
< >
Markup types
JSON-LD
Microdata
Microformats
RDFa
#SMX #24a1 @AlexisKSanders
0
1
2
3
4
5
6
7
8
The story of web structured data: sometimes less is more.DomainUsage(Millions)
201720162003 2004 2008 2010/1 2012 2013 2014 20151997 2000
< >
https://www.slideshare.net/rvguha/sem-tech2014c
http://webdatacommons.org/structureddata#SMX #24a1
*
#SMX #24a1 @AlexisKSanders
(Item) type
Schema.org is a vocabulary (of many), but really is more
comparable to a dictionary.
http://schema.org/Product
Definition
#SMX #24a1 @AlexisKSanders
MICRODATA < >
Implementation
What is it? HTML JavaScript
Easier to copy
and paste on
page
Can be easier
for templated
pages
Support
JSON-
LD
Microdata versus JSON-LD
*
*Rich results for products not consistently population, yet
#SMX #24a1 @AlexisKSanders
<div itemscope itemtype="http://schema.org/Event">
<span itemprop="name">SMX West</span>
<span itemprop="description">SMX West 2018 - 3 days of expert-led training,
cutting-edge content, and exclusive networking for search marketing
professionals.</span>
<meta itemprop="url" content="https://marketinglandevents.com/smx/west/" />
<meta itemprop="startDate" content="2018-03-13T7:00" />
<meta itemprop="endDate" content="2018-03-15T16:15" />
</div>
Mircodata*
< >
*Note: Missing required properties, for illustrative purposes only
#SMX #24a1 @AlexisKSanders
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Event",
"name": "SMX West",
"description": "SMX West 2018 - 3 days of expert-led training, cutting-edge
content, and exclusive networking for search marketing professionals.",
"url": "https://marketinglandevents.com/smx/west/",
"startDate": "2018-03-13T7:00",
"endDate": "2018-03-15T16:15"
}
</script>
JSON-LD*
*Note: Missing required properties, for illustrative purposes only
#SMX #24a1 @AlexisKSanders
Nesting
n. where information is organized in layers or
where objects contain other similar objects.
#SMX #24a1 @AlexisKSanders
Product
name :
offers :
price :
priceCurrency :
@type : Offer
reviewCount :
aggregateRating :
@type : AggregateRating
ratingValue :
Match Nest Me!
Rated 4.5 out of 5
$7.29 (USD)
75 reviews
Super Shine Apricot Shampoo
brand :
name :
@type : Thing
JĀSÖN
#SMX #24a1 @AlexisKSanders
Product
name :
offers :
price :
priceCurrency :
@type : Offer
reviewCount :
aggregateRating :
@type : AggregateRating
ratingValue :
Match Nest Me!
Rated 4.5 out of 5
$7.29 (USD)
75 reviews
Super Shine Apricot Shampoo
brand :
name :
@type : Thing
JĀSÖN
Super Shine Apricot Shampoo
4.5
75
7.29
USD
JĀSÖN
#SMX #24a1 @AlexisKSanders
<script type="application/ld+json">
{ "@context": "http://schema.org/",
"@type": "Product",Product
name :
offers :
price :
priceCurrency :
@type : Offer
reviewCount :
aggregateRating :
@type : AggregateRating
ratingValue :
Match Nest Me!
Rated 4.5 out of 5
$7.29 (USD)
75 reviews
Super Shine Apricot Shampoo
brand :
name :
@type : Thing
JĀSÖN
Super Shine Apricot Shampoo
4.5
5
75
USD
JĀSÖN
}
</script>
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" "
" " " "
" "
" "
" "
" "
" "
" "
" "
" "
,
,
,
,
,
,
}
}
}
{
{
{
,
,
#SMX #24a1 @AlexisKSanders
Random Trivia: According to Dunderpedia, Michael Scott’s favorite ice cream is mint chocolate chip.
Benefits: Why
<3 Structured
Data
Structured Data
#SMX #24a1 @AlexisKSanders
Product
AggregateRating
Offer
1. Enhanced SERP Results
Note: Schema.org doesn’t necessarily need to be present for rich results to appear
#SMX #24a1 @AlexisKSanders
1. Enhanced SERP Results
Movie
AggregateRating
Note: Schema.org doesn’t necessarily need to be present for rich results to appear
#SMX #24a1 @AlexisKSanders
1. Enhanced SERP Results
MusicEvent
Note: Schema.org doesn’t necessarily need to be present for rich results to appear
#SMX #24a1 @AlexisKSanders
Article
BlogPosting
Book*
BreadcrumbList
ClaimReview*
Course
Dataset*
Event
ImageObject
ItemList
JobPosting
LocalBusiness*
1. Google supported featured snippets with rich results
Movie
(WatchAction*)
MusicAlbum*
MusicArtist*
MusicGroup*
NewsArticle
Occupation
Organization
(ContactPoint, logo,
sameAs)
Person (sameAs)
Product (Offer)
Rating
AggregateRating
Recipe
Review*
SoftwareAppplication*
TVEpisode
(WatchAction*)
TVSeason (WatchAction*)
TVSeries (WatchAction*)
VideoObject
WebPageElement
(isAccessibleForFree for
Paywall Content)
WebSite (SearchAction)
https://developers.google.com/search/docs/guides/
*Opt-in, express interest
Note: Schema.org doesn’t necessarily need to be present for rich results to appear
#SMX #24a1 @AlexisKSanders
Share these #SMXInsights on your social channels!
#SMXInsights
Google offers structured
data documentation for
+26 item types that
enhance the SERP!
#SMX #24a1 @AlexisKSanders
2. CTR for Rich Results appears (in most cases) to be
higher than results without
#SMX #24a1 @AlexisKSanders
Share these #SMXInsights on your social channels!
#SMXInsights
For a majority of
eCommerce sites with
product rich results, rich
results will outperform
regular listing.
#SMX #24a1 @AlexisKSandershttps://searchengineland.com/gary-illyes-ask-anything-smx-east-285706
@methode
Gary Illyes
Google
WebmasterTrendsAnalyst
(House Elf and Chief of
Sunshine and Happiness*)
*Somebody needs to give him some socks
“I want to live in a world where schema is not
that important, but currently, we need it. If a
team at Google recommends it, you probably
should make use of it, as schema helps us
understand the content on the page, and it is
used in certain search features (but not in
rankings algorithms).”
3. Gary at SMX - Google uses structured data to better
understand pages
#SMX #24a1 @AlexisKSanders
• Google doesn’t mind if people markup non-
supported markup (change in SERP may not be
noticeable)
• We don’t use Schema.org as a quality factor
• Start with Google Search Documentation
• Prioritize snippets and what immediately provides value
• It can help extract entities better
Google Webmaster Hangout 2/1/18 ~42 Minutes: https://goo.gl/dsZRc6
@JohnMu
John Mueller
Google
WebmasterTrendsAnalyst
4. John on Webmaster Hangouts - Google is using
structured data to extract entities
#SMX #24a1 @AlexisKSanders
4. Structured data adds to Semantic Relevance (i.e., what
your business is “known for”)
“Known for” =
representative term (e.g.
[server], [host], [dinner] in
article about restaurant)
Google Patent: Assigning terms of interest to an entity 8,589,399, 3/26/12
Example of Associating Terms with Business Listing
#SMX #24a1 @AlexisKSanders
4.5 It all boils down to confidence in answers
Patent: Synonym identification based on co-occurring terms 8,538,984, 3/3/12
How confident are search engines that the information is trustworthy and useful?
My Friend, Gia
#SMX #24a1 @AlexisKSanders
5. Support your paid team - Product Merchant Center Feed
Updates with Product Structured data (March 2017)
https://support.google.
com/merchants/answe
r/6069143
Structured data markup must be present in the HTML returned from the
web server (i.e., no JavaScript generated tags)
Benefits:
• Automatic item updates
• Google Sheets Merchant
Center add-on
#SMX #24a1 @AlexisKSanders
6. Future: Support Voice (hypothesis)
According to Wikipedia, ‘El Pueblo de
San José de Guadalupe was founded
by José Joaquín Moraga on November
29, 1777, the first pueblo-town not
associated with a mission or a military
post in upper Las Californias.’
[who discovered san jose]
Google Mini pulls from featured snippets. Featured snippets appear when
Google has high confidence in usefulness of response. Structured data can
support confidence ratings.
#SMX #24a1 @AlexisKSanders
Share these #SMXInsights on your social channels!
#SMXInsights
• Microdata: 76%
• JSON-LD: 25%
• OGP: 68%
• Twitter Summary Cards: 27%
+25K eCommerce URLs
populating with featured snippets:
Twitter SEO Experiments: https://goo.gl/fRzmgf
Important Note: Correlation does not imply causation.
Huge thanks to
#SMX #24a1 @AlexisKSanders
Share these #SMXInsights on your social channels!
#SMXInsights
Top Occurring Microdata for eCom with Snippet:
Twitter SEO Experiments: https://goo.gl/fRzmgf
Huge thanks to
Important Note: Correlation does not imply causation.
OfferCatalog, 18%
ListItem, 14%
AggregateRating, 9%
Product, 8%Review, 8%
Rating, 7%
NewCondition, 6%
Offer, 5%
Thing, 4%
BreadcrumbList, 4%
Other, 17%
#SMX #24a1 @AlexisKSanders
Share these #SMXInsights on your social channels!
#SMXInsights
Top Occurring JSON-LD for eCom with Snippets:
Twitter SEO Experiments: https://goo.gl/fRzmgf
Huge thanks to
ListItem, 25%
Offer, 16%
Product, 15%WebPage, 6%
BreadcrumbList, 5%
Organization, 4%
SiteNavigationElement, 4%
AggregateRating, 3%
WebPageElement, 3%
ImageObject, 3%
Other, 16%
Important Note: Correlation does not imply causation.
#SMX #24a1 @AlexisKSanders
6. Future: Support Voice (speculative)
http://pending.schema.org/speakable
http://pending.schema.org/SpeakableSpecification
http://money.cnn.com/2018/02/18/media/black-panther-box-office/index.html
#SMX #24a1 @AlexisKSanders
Minesweeper cheat code: XYZZY+ Shift-Enter + Enter, watch dots in upper left corner of frame
Practical Schema
for pragmatic,
busy people
#SMX #24a1 @AlexisKSanders
0 500,000 1,000,000 1,500,000 2,000,000 2,500,000 3,000,000
ListItem
WebPage
Event
Place
PostalAddress
LocalBusiness
Person
Organization
SearchAction
WebSite
Popular Schema: Top 10 JSON-LD by Domain
http://webdatacommons.org/structureddata
Sept '14
Oct '14
Jan '15
Jan '15
Sept '14
Dec '15
Dec '15
Dec '15
Aug ‘16
#SMX #24a1 @AlexisKSanders
0 200,000 400,000 600,000 800,000 1,000,000
Organization
PostalAddress
Offer
Article
Person
Product
Blog
WPHeader
SiteNavigationElement
WebPage
Popular Schema: Top 10 Microdata by Domain
< >
http://webdatacommons.org/structureddata
#SMX #24a1 @AlexisKSanders
Practical Schema: All sites
BreadcrumbList
Person
Organization
WebSite
ItemList
Properties
itemListElement
sameAs
logo, contactPoint, sameAs
potentialAction
itemListElement
TypeMarking up
Breadcrumbs
Person
Organization
Sitelink Searchbox
Carousel Lists
#SMX #24a1 @AlexisKSanders
https://technicalseo.com/s
eo-tools/schema-markup-
generator
@maxxeight
Max Prin
Merkle
Implementing Practical Schema - Beginner
#SMX #24a1 @AlexisKSanders
Step 1: Navigate to JSON-LD Schema Markup Generator
https://technicalseo.com/seo-tools/schema-markup-generator
#SMX #24a1 @AlexisKSanders
Step 2: Select your Item Type from Dropdown Menu
https://technicalseo.com/seo-tools/schema-markup-generator
#SMX #24a1 @AlexisKSanders
Step 3: Fill-in-the-Blank
As you type, the JSON-LD will Update
https://technicalseo.com/seo-tools/schema-markup-generator
#SMX #24a1 @AlexisKSanders
Step 4: Click “G Validate” to test in Google’s Structured
Data Testing Tool
https://technicalseo.com/seo-tools/schema-markup-generator
#SMX #24a1 @AlexisKSanders
Implementing Practical Schema - Intermediate
https://developers.g
oogle.com/search/d
ocs/guides/
#SMX #24a1 @AlexisKSanders
Step 1: Read Guidelines - Give rules and expands on
Google’s usage
https://developers.google.com/search/docs/guides/
Rules
Additional
Opportunity
#SMX #24a1 @AlexisKSanders
Step 2: Review Item Properties (especially note
“Required”)!
https://developers.google.com/search/docs/guides/
Required
Properties
#SMX #24a1 @AlexisKSanders
Step 3: Check out Example Markups
https://developers.google.com/search/docs/guides/
Examples
#SMX #24a1 @AlexisKSanders
Step 4: Reverse-engineer by replacing RED values
https://developers.google.com/search/docs/guides/
Update
Red
Properties
(JSON-
LD)
#SMX #24a1 @AlexisKSanders
MPH Average Human = 8; Snake = 12; Mongoose = 20; Usain Bolt = 27.8; Panther = 36
Schema
for
overachievers
#SMX #24a1 @AlexisKSanders
Schema.org (for brave souls)
http://schema.org/d
ocs/full.html
#SMX #24a1 @AlexisKSanders
Stages of Working with Schema.org
::a ton of confused
stares::
::intense
concentration::
::coffee + intense
concentration::
::unlocking the
eternal mysteries
within Schema.org::
http://schema.org/docs/full.html
#SMX #24a1 @AlexisKSanders
Step 1: Select Item Type from Schema.org’s Full Hierarchy
http://schema.org/docs/full.html
Select For All
Extensions
#SMX #24a1 @AlexisKSanders
Item Type Page
http://schema.org/docs/full.html
http://schema.org/Aquarium
(Item) type
Where lives in
hierarchy
Description
Usage
#SMX #24a1 @AlexisKSanders
Item Properties, Expected Type, and Description
http://schema.org/docs/full.html
http://schema.org/Aquarium
#SMX #24a1 @AlexisKSanders
Organization of Item Properties
http://schema.org/docs/full.html
CivilStructure
Place
Thing
http://schema.org/Aquarium
#SMX #24a1 @AlexisKSanders
“Expected Type” tells you what needs to be nested
Nest everything other than data types
• Boolean
• False
• True
• Date
• DateTime
• Number
• Float
• Integer
• Text
• URL
• Time
Data Types
http://schema.org/Aquarium
Game – Should I be nested?
http://schema.org/docs/full.html
#SMX #24a1 @AlexisKSanders
“Expected Type” tells you what needs to be nested
Nest everything other than data types
• Boolean
• False
• True
• Date
• DateTime
• Number
• Float
• Integer
• Text
• URL
• Time
Data Types
http://schema.org/Aquarium
Game – Should I be nested?
Text - no
Map - yes
URL - no
Boolean - no
Text - no
ImageObject - yes
URL - no
Integer - no
OHS - yes
ImageObject - yes
Photograph – yes
Boolean -no
http://schema.org/docs/full.html
#SMX #24a1 @AlexisKSanders
Step 2: List Item Properties, Expected Type, and Values
http://schema.org/docs/full.html
http://schema.org/Aquarium
#SMX #24a1 @AlexisKSanders
Step 3: Add Syntax (JSON-LD)
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Aquarium",
"name": "National Aquarium",
"alternateName": "National Aquarium in Baltimore",
"telephone": "+1-410-576-3800",
"address": {
"@type": "PostalAddress",
"streetAddress": "501 E Pratt St",
"addressLocality": "Baltimore",
"addressRegion": "MD",
"postalCode": "21202",
"addressCountry": "US"
}
}
</script>
Beginning
Type
Properties
Type
Properties
end
http://schema.org/Aquarium http://schema.org/docs/full.html
*Note: Missing required properties, for illustrative purposes only
#SMX #24a1 @AlexisKSanders
Step 3: Add Syntax (Microdata)
<div itemscope itemtype="http://schema.org/Aquarium">
<span itemprop="name">National Aquarium</span>
<meta itemprop="name" content="National Aquarium in Baltimore" />
<span itemprop="telephone">+1-410-576-3800</span>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">501 E Pratt St</span>
<span itemprop="addressLocality">Baltimore</span>
<span itemprop="addressRegion">MD</span>
<span itemprop="postalCode">21202</span>
<span itemprop="addressCountry">US</span>
</div>
</div>
http://schema.org/docs/full.html
Type
Properties
Type
Properties
end
http://schema.org/Aquarium
*Note: Missing required properties, for illustrative purposes only
#SMX #24a1 @AlexisKSanders
Pitfall Cheat Code: Left, Square, Circle, Down, Square, X, Square, Circle to get unlimited canteen.
Common
Pitfalls
You
#SMX #24a1 @AlexisKSanders
Pitfall #1
Syntax
• “” are not the same as ""
– Microsoft switches "" to “”
– Use a text editor
• Mind your Commas
• Tip: Pay attention to in SDTT
#SMX #24a1 @AlexisKSanders
Pitfall #2
Vocabulary
• Pay attention to required/allowed
properties
• Schema.org types and properties are
case sensitive reference
• Tip: Check in the Structured Data
TestingTool
Vocabulary
#SMX #24a1 @AlexisKSanders
Pitfall #3
• Adding information that is not on the
page
• Check Google’s Structured Data Policies:
https://developers.google.com/structure
d-data/policies
Policy Violation
#SMX #24a1 @AlexisKSanders
Pitfall #4
• Make sure to attribute properties to
correct item type
– E.g., using “name” and giving the
location the event name
• Tip: Pay close attention to {} and
itemscope
Nesting Errors
#SMX #24a1 @AlexisKSanders
Dwight, At 3:30 p.m. the coffee at SMX is okay. No instructions to follow. Cordially, Future Dwight
Future
Predictions
#SMX #24a1 @AlexisKSanders
Future Predictions Google Schema.org Support
AboutPage
ApartmentComplex
AudioObject
AutoDealer
Brand
CollectionPage
Comment
ContactPage
Corporation
Hotel
1. Top Schema.org usage without Google documentation (for websites):
ImageGallery
MusicPlaylist
MusicRecording
PriceSpecification
RealEstateAgent
Residence
Store
Table
UserComments
ViewAction
#SMX #24a1 @AlexisKSanders
Future Predictions Google Schema.org Support
2. Item types that support voice efforts
SpeakableSpecification
HowTo
HowToDirection
HowToSection
HowToStep
HowToTip
HowToDirection
HowToItem
HowToSupply
HowToTool
HowToStep
HowToTip
QAPage
Question
Answer
#SMX #24a1 @AlexisKSanders
Future Predictions Google Schema.org Support
3. More for publishing and eCommerce (especially actions)
AnalysisNewsArticle
BackgroundNewsArticle
OpinionNewsArticle
ReportageNewsArticle
ReviewNewsArticle
EmployerReview
UserReview
ProductIndividualProduct
ProductModel
SomeProducts
BuyAction
QuoteAction
GS1
Publishing eCommerce
#SMX #24a1 @AlexisKSanders
Future Predictions Google Schema.org Support
4. Things users want, e.g., medical answers from Dr. Google (http://health-
lifesci.schema.org)
LifestyleModificationDiet
PhysicalActivity
ExercisePlan
MedicalSignOrSymptom
MedicalSign
VitalSign
MedicalSymptom
MedicalCondition
InfectiousDisease
MedicalGuideline
MedicalProcedure
DiagnosticProcedure
PhysicalExam
SurgicalProcedure
TherapeuticProcedure
http://health-lifesci.schema.org
Proactive Health Reactive Health
#SMX #24a1 @AlexisKSanders
Fun stuff for you 
https://technicalseo.com
/homework/structured-data/
https://technicalseo.com
/seo-tools/schema-markup-
generator/visual/
#SMX #24a1 @AlexisKSanders
@methode
Gary Illyes
@JarnoVanDriel
JarnoVan Driel
@aaranged
Aaron Bradley
Experts to Follow
@maxxeight
Max Prin
@searchliaison
Danny Sullivan
@JohnMu
John Mueller
#SMX #24a1 @AlexisKSanders
https://www.flaticon.com/authors/:
• dinosoftlabs
• eucalyp
• freepik
• gregor-cresnar
• maxim-basinski
• nikita-golubev
• pixel-buddha
• pixel-perfect
• popcorns-arts
• smashicons
• vectors-market
• basic-flat-icons
Icon Sources
#SMX #24a1 @AlexisKSanders
LEARN MORE: UPCOMING @SMX EVENTS
THANK YOU!
SEE YOU AT THE NEXT #SMX
@AlexisKSanders
/in/alexissanders

Más contenido relacionado

La actualidad más candente

SEO in Orbit - Duplicate Content by OnCrawl
SEO in Orbit - Duplicate Content by OnCrawlSEO in Orbit - Duplicate Content by OnCrawl
SEO in Orbit - Duplicate Content by OnCrawlAlexis Sanders
 
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019Max Prin
 
SMX West 2020 - Leveraging Structured Data for Maximum Effect
SMX West  2020 - Leveraging Structured Data for Maximum EffectSMX West  2020 - Leveraging Structured Data for Maximum Effect
SMX West 2020 - Leveraging Structured Data for Maximum EffectAbby Hamilton
 
FoundConf 2018 Signals Speak - Alexis Sanders
FoundConf 2018 Signals Speak - Alexis SandersFoundConf 2018 Signals Speak - Alexis Sanders
FoundConf 2018 Signals Speak - Alexis SandersAlexis Sanders
 
SMX East - SEO Tools Panel
SMX East - SEO Tools PanelSMX East - SEO Tools Panel
SMX East - SEO Tools PanelAbby Hamilton
 
BrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersBrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersAlexis Sanders
 
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...Faye Watt
 
Website Migrations at SMX Munich 2019 - Patrick Stox
Website Migrations at SMX Munich 2019 - Patrick StoxWebsite Migrations at SMX Munich 2019 - Patrick Stox
Website Migrations at SMX Munich 2019 - Patrick Stoxpatrickstox
 
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016Dawn Anderson MSc DigM
 
What's Next for Page Experience - SMX Next 2021 - Patrick Stox
What's Next for Page Experience - SMX Next 2021 - Patrick StoxWhat's Next for Page Experience - SMX Next 2021 - Patrick Stox
What's Next for Page Experience - SMX Next 2021 - Patrick StoxAhrefs
 
Advanced data-driven technical SEO - SMX London 2019
Advanced data-driven technical SEO - SMX London 2019Advanced data-driven technical SEO - SMX London 2019
Advanced data-driven technical SEO - SMX London 2019Bastian Grimm
 
Alexis max-Creating a bot experience as good as your user experience - Alexis...
Alexis max-Creating a bot experience as good as your user experience - Alexis...Alexis max-Creating a bot experience as good as your user experience - Alexis...
Alexis max-Creating a bot experience as good as your user experience - Alexis...WeLoveSEO
 
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin
 
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...Alex Moss
 
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip Gamble
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip GambleTechnical SEO Beyond the Audit - Brighton SEO April 2017 - Philip Gamble
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip GamblePhilip Gamble
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019patrickstox
 
Redefining technical SEO & how we should be thinking about it as an industry ...
Redefining technical SEO & how we should be thinking about it as an industry ...Redefining technical SEO & how we should be thinking about it as an industry ...
Redefining technical SEO & how we should be thinking about it as an industry ...WeLoveSEO
 
What a search engine can teach you about product sitemaps - BrightonSEO April...
What a search engine can teach you about product sitemaps - BrightonSEO April...What a search engine can teach you about product sitemaps - BrightonSEO April...
What a search engine can teach you about product sitemaps - BrightonSEO April...Pricesearcher
 

La actualidad más candente (18)

SEO in Orbit - Duplicate Content by OnCrawl
SEO in Orbit - Duplicate Content by OnCrawlSEO in Orbit - Duplicate Content by OnCrawl
SEO in Orbit - Duplicate Content by OnCrawl
 
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
What's New with Schema and Structured Data - Max Prin - SMX Advanced 2019
 
SMX West 2020 - Leveraging Structured Data for Maximum Effect
SMX West  2020 - Leveraging Structured Data for Maximum EffectSMX West  2020 - Leveraging Structured Data for Maximum Effect
SMX West 2020 - Leveraging Structured Data for Maximum Effect
 
FoundConf 2018 Signals Speak - Alexis Sanders
FoundConf 2018 Signals Speak - Alexis SandersFoundConf 2018 Signals Speak - Alexis Sanders
FoundConf 2018 Signals Speak - Alexis Sanders
 
SMX East - SEO Tools Panel
SMX East - SEO Tools PanelSMX East - SEO Tools Panel
SMX East - SEO Tools Panel
 
BrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis SandersBrightonSEO Structured Data by Alexis Sanders
BrightonSEO Structured Data by Alexis Sanders
 
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...
An SEO's Guide to Website Migrations | Faye Watt | BrightonSEO's Advanced Tec...
 
Website Migrations at SMX Munich 2019 - Patrick Stox
Website Migrations at SMX Munich 2019 - Patrick StoxWebsite Migrations at SMX Munich 2019 - Patrick Stox
Website Migrations at SMX Munich 2019 - Patrick Stox
 
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016
SEO Crawl Rank And Crawl Tank - Brighton SEO April 2016
 
What's Next for Page Experience - SMX Next 2021 - Patrick Stox
What's Next for Page Experience - SMX Next 2021 - Patrick StoxWhat's Next for Page Experience - SMX Next 2021 - Patrick Stox
What's Next for Page Experience - SMX Next 2021 - Patrick Stox
 
Advanced data-driven technical SEO - SMX London 2019
Advanced data-driven technical SEO - SMX London 2019Advanced data-driven technical SEO - SMX London 2019
Advanced data-driven technical SEO - SMX London 2019
 
Alexis max-Creating a bot experience as good as your user experience - Alexis...
Alexis max-Creating a bot experience as good as your user experience - Alexis...Alexis max-Creating a bot experience as good as your user experience - Alexis...
Alexis max-Creating a bot experience as good as your user experience - Alexis...
 
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based WebsitesMax Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
Max Prin - TechSEO Boost 2017 - SEO Best Practices For JavaScript-Based Websites
 
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...
#BrightonSEO: Work Life Hacks - Tools & Tips to Improve Internal Productivity...
 
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip Gamble
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip GambleTechnical SEO Beyond the Audit - Brighton SEO April 2017 - Philip Gamble
Technical SEO Beyond the Audit - Brighton SEO April 2017 - Philip Gamble
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
 
Redefining technical SEO & how we should be thinking about it as an industry ...
Redefining technical SEO & how we should be thinking about it as an industry ...Redefining technical SEO & how we should be thinking about it as an industry ...
Redefining technical SEO & how we should be thinking about it as an industry ...
 
What a search engine can teach you about product sitemaps - BrightonSEO April...
What a search engine can teach you about product sitemaps - BrightonSEO April...What a search engine can teach you about product sitemaps - BrightonSEO April...
What a search engine can teach you about product sitemaps - BrightonSEO April...
 

Similar a SMX West Structured Data Practical and Advanced

Supercharging your Organic CTR
Supercharging your Organic CTRSupercharging your Organic CTR
Supercharging your Organic CTRPhil Pearce
 
How to use Schema to enrich search results and improve your CTR - Andrew Mart...
How to use Schema to enrich search results and improve your CTR - Andrew Mart...How to use Schema to enrich search results and improve your CTR - Andrew Mart...
How to use Schema to enrich search results and improve your CTR - Andrew Mart...SearchNorwich
 
Rich Results and Structured Data
Rich Results and Structured DataRich Results and Structured Data
Rich Results and Structured DataSMA Marketing
 
What's New With Structured Markup
What's New With Structured MarkupWhat's New With Structured Markup
What's New With Structured MarkupEric Enge
 
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick StoxSMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stoxpatrickstox
 
Snowplow: evolve your analytics stack with your business
Snowplow: evolve your analytics stack with your businessSnowplow: evolve your analytics stack with your business
Snowplow: evolve your analytics stack with your businessyalisassoon
 
Implement and TRACK Structured Data - SMX East 2014
Implement and TRACK Structured Data - SMX East 2014Implement and TRACK Structured Data - SMX East 2014
Implement and TRACK Structured Data - SMX East 2014Mike Arnesen
 
Retail referencearchitecture productcatalog
Retail referencearchitecture productcatalogRetail referencearchitecture productcatalog
Retail referencearchitecture productcatalogMongoDB
 
Big Objects in Salesforce
Big Objects in SalesforceBig Objects in Salesforce
Big Objects in SalesforceAmit Chaudhary
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisTorsten Steinbach
 
Elasticsearch first-steps
Elasticsearch first-stepsElasticsearch first-steps
Elasticsearch first-stepsMatteo Moci
 
Introduction to GraphQL and AWS Appsync on AWS - iOS
Introduction to GraphQL and AWS Appsync on AWS - iOSIntroduction to GraphQL and AWS Appsync on AWS - iOS
Introduction to GraphQL and AWS Appsync on AWS - iOSAmazon Web Services
 
Relevance trilogy may dream be with you! (dec17)
Relevance trilogy  may dream be with you! (dec17)Relevance trilogy  may dream be with you! (dec17)
Relevance trilogy may dream be with you! (dec17)Woonsan Ko
 
Creating a Single View Part 1: Overview and Data Analysis
Creating a Single View Part 1: Overview and Data AnalysisCreating a Single View Part 1: Overview and Data Analysis
Creating a Single View Part 1: Overview and Data AnalysisMongoDB
 
Snowplow - Evolve your analytics stack with your business
Snowplow - Evolve your analytics stack with your businessSnowplow - Evolve your analytics stack with your business
Snowplow - Evolve your analytics stack with your businessGiuseppe Gaviani
 
"Lessons learned using Apache Spark for self-service data prep in SaaS world"
"Lessons learned using Apache Spark for self-service data prep in SaaS world""Lessons learned using Apache Spark for self-service data prep in SaaS world"
"Lessons learned using Apache Spark for self-service data prep in SaaS world"Pavel Hardak
 
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS World
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS WorldLessons Learned Using Apache Spark for Self-Service Data Prep in SaaS World
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS WorldDatabricks
 
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...Amazon Web Services
 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Suzzicks
 

Similar a SMX West Structured Data Practical and Advanced (20)

Supercharging your Organic CTR
Supercharging your Organic CTRSupercharging your Organic CTR
Supercharging your Organic CTR
 
How to use Schema to enrich search results and improve your CTR - Andrew Mart...
How to use Schema to enrich search results and improve your CTR - Andrew Mart...How to use Schema to enrich search results and improve your CTR - Andrew Mart...
How to use Schema to enrich search results and improve your CTR - Andrew Mart...
 
Rich Results and Structured Data
Rich Results and Structured DataRich Results and Structured Data
Rich Results and Structured Data
 
What's New With Structured Markup
What's New With Structured MarkupWhat's New With Structured Markup
What's New With Structured Markup
 
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick StoxSMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
SMX Advanced 2018 Solving Complex SEO Problems by Patrick Stox
 
Snowplow: evolve your analytics stack with your business
Snowplow: evolve your analytics stack with your businessSnowplow: evolve your analytics stack with your business
Snowplow: evolve your analytics stack with your business
 
Implement and TRACK Structured Data - SMX East 2014
Implement and TRACK Structured Data - SMX East 2014Implement and TRACK Structured Data - SMX East 2014
Implement and TRACK Structured Data - SMX East 2014
 
Retail referencearchitecture productcatalog
Retail referencearchitecture productcatalogRetail referencearchitecture productcatalog
Retail referencearchitecture productcatalog
 
Big Objects in Salesforce
Big Objects in SalesforceBig Objects in Salesforce
Big Objects in Salesforce
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
 
Elasticsearch first-steps
Elasticsearch first-stepsElasticsearch first-steps
Elasticsearch first-steps
 
Introduction to GraphQL and AWS Appsync on AWS - iOS
Introduction to GraphQL and AWS Appsync on AWS - iOSIntroduction to GraphQL and AWS Appsync on AWS - iOS
Introduction to GraphQL and AWS Appsync on AWS - iOS
 
Relevance trilogy may dream be with you! (dec17)
Relevance trilogy  may dream be with you! (dec17)Relevance trilogy  may dream be with you! (dec17)
Relevance trilogy may dream be with you! (dec17)
 
MongodB Internals
MongodB InternalsMongodB Internals
MongodB Internals
 
Creating a Single View Part 1: Overview and Data Analysis
Creating a Single View Part 1: Overview and Data AnalysisCreating a Single View Part 1: Overview and Data Analysis
Creating a Single View Part 1: Overview and Data Analysis
 
Snowplow - Evolve your analytics stack with your business
Snowplow - Evolve your analytics stack with your businessSnowplow - Evolve your analytics stack with your business
Snowplow - Evolve your analytics stack with your business
 
"Lessons learned using Apache Spark for self-service data prep in SaaS world"
"Lessons learned using Apache Spark for self-service data prep in SaaS world""Lessons learned using Apache Spark for self-service data prep in SaaS world"
"Lessons learned using Apache Spark for self-service data prep in SaaS world"
 
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS World
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS WorldLessons Learned Using Apache Spark for Self-Service Data Prep in SaaS World
Lessons Learned Using Apache Spark for Self-Service Data Prep in SaaS World
 
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...
0 to 60 with AWS AppSync: Rapid Development Techniques for Mobile APIs (MOB32...
 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
 

Más de Alexis Sanders

The Science of Seeking Your Customer: Research, SEO, CRM
The Science of Seeking Your Customer: Research, SEO, CRMThe Science of Seeking Your Customer: Research, SEO, CRM
The Science of Seeking Your Customer: Research, SEO, CRMAlexis Sanders
 
SMX Keynote - SEO Horizons - Alexis' Section
SMX Keynote - SEO Horizons - Alexis' SectionSMX Keynote - SEO Horizons - Alexis' Section
SMX Keynote - SEO Horizons - Alexis' SectionAlexis Sanders
 
skillshare organic search strategies - template
skillshare organic search strategies - templateskillshare organic search strategies - template
skillshare organic search strategies - templateAlexis Sanders
 
Mobile-First Indexing and AMP - SMX Advanced 2018
Mobile-First Indexing and AMP - SMX Advanced 2018Mobile-First Indexing and AMP - SMX Advanced 2018
Mobile-First Indexing and AMP - SMX Advanced 2018Alexis Sanders
 
D13TM Newsletter - July
D13TM Newsletter - JulyD13TM Newsletter - July
D13TM Newsletter - JulyAlexis Sanders
 
2016-7 Toastmasters PRM Plan-Website
2016-7 Toastmasters PRM Plan-Website2016-7 Toastmasters PRM Plan-Website
2016-7 Toastmasters PRM Plan-WebsiteAlexis Sanders
 
Summer TLI 2016 program v7
Summer TLI 2016 program v7Summer TLI 2016 program v7
Summer TLI 2016 program v7Alexis Sanders
 
Fall Conference 2015 - Hall of Fame Program - v4
Fall Conference 2015 - Hall of Fame Program - v4Fall Conference 2015 - Hall of Fame Program - v4
Fall Conference 2015 - Hall of Fame Program - v4Alexis Sanders
 
Summer TLI 2015 program-Final-LOW RES
Summer TLI 2015 program-Final-LOW RESSummer TLI 2015 program-Final-LOW RES
Summer TLI 2015 program-Final-LOW RESAlexis Sanders
 
Winter TLI 2016 program-8_PROOF
Winter TLI 2016 program-8_PROOFWinter TLI 2016 program-8_PROOF
Winter TLI 2016 program-8_PROOFAlexis Sanders
 
Spring Conference 2016 - program v9
Spring Conference 2016 - program v9Spring Conference 2016 - program v9
Spring Conference 2016 - program v9Alexis Sanders
 
Fall Conference 2015 v7
Fall Conference 2015 v7Fall Conference 2015 v7
Fall Conference 2015 v7Alexis Sanders
 

Más de Alexis Sanders (13)

The Science of Seeking Your Customer: Research, SEO, CRM
The Science of Seeking Your Customer: Research, SEO, CRMThe Science of Seeking Your Customer: Research, SEO, CRM
The Science of Seeking Your Customer: Research, SEO, CRM
 
SMX Keynote - SEO Horizons - Alexis' Section
SMX Keynote - SEO Horizons - Alexis' SectionSMX Keynote - SEO Horizons - Alexis' Section
SMX Keynote - SEO Horizons - Alexis' Section
 
skillshare organic search strategies - template
skillshare organic search strategies - templateskillshare organic search strategies - template
skillshare organic search strategies - template
 
Mobile-First Indexing and AMP - SMX Advanced 2018
Mobile-First Indexing and AMP - SMX Advanced 2018Mobile-First Indexing and AMP - SMX Advanced 2018
Mobile-First Indexing and AMP - SMX Advanced 2018
 
Ocular Dialect
Ocular DialectOcular Dialect
Ocular Dialect
 
D13TM Newsletter - July
D13TM Newsletter - JulyD13TM Newsletter - July
D13TM Newsletter - July
 
2016-7 Toastmasters PRM Plan-Website
2016-7 Toastmasters PRM Plan-Website2016-7 Toastmasters PRM Plan-Website
2016-7 Toastmasters PRM Plan-Website
 
Summer TLI 2016 program v7
Summer TLI 2016 program v7Summer TLI 2016 program v7
Summer TLI 2016 program v7
 
Fall Conference 2015 - Hall of Fame Program - v4
Fall Conference 2015 - Hall of Fame Program - v4Fall Conference 2015 - Hall of Fame Program - v4
Fall Conference 2015 - Hall of Fame Program - v4
 
Summer TLI 2015 program-Final-LOW RES
Summer TLI 2015 program-Final-LOW RESSummer TLI 2015 program-Final-LOW RES
Summer TLI 2015 program-Final-LOW RES
 
Winter TLI 2016 program-8_PROOF
Winter TLI 2016 program-8_PROOFWinter TLI 2016 program-8_PROOF
Winter TLI 2016 program-8_PROOF
 
Spring Conference 2016 - program v9
Spring Conference 2016 - program v9Spring Conference 2016 - program v9
Spring Conference 2016 - program v9
 
Fall Conference 2015 v7
Fall Conference 2015 v7Fall Conference 2015 v7
Fall Conference 2015 v7
 

Último

Master the Art of Digital Recruitment in Asia.pdf
Master the Art of Digital Recruitment in Asia.pdfMaster the Art of Digital Recruitment in Asia.pdf
Master the Art of Digital Recruitment in Asia.pdfHigher Education Marketing
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfVWO
 
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
 
How To Utilize Calculated Properties in your HubSpot Setup
How To Utilize Calculated Properties in your HubSpot SetupHow To Utilize Calculated Properties in your HubSpot Setup
How To Utilize Calculated Properties in your HubSpot Setupssuser4571da
 
Talent Management for mba 3rd sem useful
Talent Management for mba 3rd sem usefulTalent Management for mba 3rd sem useful
Talent Management for mba 3rd sem usefulAtifaArbar
 
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...CIO Business World
 
What are the 4 characteristics of CTAs that convert?
What are the 4 characteristics of CTAs that convert?What are the 4 characteristics of CTAs that convert?
What are the 4 characteristics of CTAs that convert?Juan Pineda
 
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCR
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCRCall Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCR
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCRlizamodels9
 
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024CIO Business World
 
Fiverr's Product Marketing Interview Assignment
Fiverr's Product Marketing Interview AssignmentFiverr's Product Marketing Interview Assignment
Fiverr's Product Marketing Interview AssignmentFarrel Brest
 
From Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOFrom Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOSzymon Słowik
 
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon GarsideInbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garsiderobwhite630290
 
Michael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisMichael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisjunaid794917
 
pptx.marketing strategy of tanishq. pptx
pptx.marketing strategy of tanishq. pptxpptx.marketing strategy of tanishq. pptx
pptx.marketing strategy of tanishq. pptxarsathsahil
 
Jai Institute for Parenting Program Guide
Jai Institute for Parenting Program GuideJai Institute for Parenting Program Guide
Jai Institute for Parenting Program Guidekiva6
 
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
 
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdf
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdfDIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdf
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdfmayanksharma0441
 
VIP Call Girls In Green Park 9654467111 Escorts Service
VIP Call Girls In Green Park 9654467111 Escorts ServiceVIP Call Girls In Green Park 9654467111 Escorts Service
VIP Call Girls In Green Park 9654467111 Escorts ServiceSapana Sha
 
Red bull marketing presentation pptxxxxx
Red bull marketing presentation pptxxxxxRed bull marketing presentation pptxxxxx
Red bull marketing presentation pptxxxxx216310017
 

Último (20)

Master the Art of Digital Recruitment in Asia.pdf
Master the Art of Digital Recruitment in Asia.pdfMaster the Art of Digital Recruitment in Asia.pdf
Master the Art of Digital Recruitment in Asia.pdf
 
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdfResearch and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).pdf
Research and Discovery Tools for Experimentation - 17 Apr 2024 - v 2.3 (1).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
 
How To Utilize Calculated Properties in your HubSpot Setup
How To Utilize Calculated Properties in your HubSpot SetupHow To Utilize Calculated Properties in your HubSpot Setup
How To Utilize Calculated Properties in your HubSpot Setup
 
Talent Management for mba 3rd sem useful
Talent Management for mba 3rd sem usefulTalent Management for mba 3rd sem useful
Talent Management for mba 3rd sem useful
 
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...
The 10 Most Influential CMO's Leading the Way of Success, 2024 (Final file) (...
 
What are the 4 characteristics of CTAs that convert?
What are the 4 characteristics of CTAs that convert?What are the 4 characteristics of CTAs that convert?
What are the 4 characteristics of CTAs that convert?
 
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCR
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCRCall Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCR
Call Girls In Aerocity Delhi ❤️8860477959 Good Looking Escorts In 24/7 Delhi NCR
 
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Lajpat Nagar Delhi 💯Call Us 🔝8264348440🔝
 
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
The 10 Most Inspirational Leaders LEADING THE WAY TO SUCCESS, 2024
 
Fiverr's Product Marketing Interview Assignment
Fiverr's Product Marketing Interview AssignmentFiverr's Product Marketing Interview Assignment
Fiverr's Product Marketing Interview Assignment
 
From Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEOFrom Chance to Choice - Tactical Link Building for International SEO
From Chance to Choice - Tactical Link Building for International SEO
 
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon GarsideInbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
Inbound Marekting 2.0 - The Paradigm Shift in Marketing | Axon Garside
 
Michael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysisMichael Kors marketing assignment swot analysis
Michael Kors marketing assignment swot analysis
 
pptx.marketing strategy of tanishq. pptx
pptx.marketing strategy of tanishq. pptxpptx.marketing strategy of tanishq. pptx
pptx.marketing strategy of tanishq. pptx
 
Jai Institute for Parenting Program Guide
Jai Institute for Parenting Program GuideJai Institute for Parenting Program Guide
Jai Institute for Parenting Program Guide
 
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
 
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdf
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdfDIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdf
DIGITAL MARKETING STRATEGY_INFOGRAPHIC IMAGE.pdf
 
VIP Call Girls In Green Park 9654467111 Escorts Service
VIP Call Girls In Green Park 9654467111 Escorts ServiceVIP Call Girls In Green Park 9654467111 Escorts Service
VIP Call Girls In Green Park 9654467111 Escorts Service
 
Red bull marketing presentation pptxxxxx
Red bull marketing presentation pptxxxxxRed bull marketing presentation pptxxxxx
Red bull marketing presentation pptxxxxx
 

SMX West Structured Data Practical and Advanced

  • 1. #SMX #24a1 @AlexisKSanders Game (while we wait!): Find 5 errors in this JSON-LD. <script type="application/ld-json"> { "@context": "http://schema.org", "@type": “Product", "name": "Super Product!", "image": "https://example.com/image.jpg" "offers": { "@type": "Offers", "priceCurrency": "USD", "price": "12.99", } } </script> Clue (for two errors):
  • 2. #SMX #24a1 @AlexisKSanders Successful SEO Using Markup & Structured Data Structured data for SEO = annotating vital elements on a page to support search engines.
  • 3. #SMX #24a1 @AlexisKSanders <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Person", "name": "Alexis Sanders", "jobTitle": "Technical SEO Manager", "sameAs": "https://twitter.com/AlexisKSanders", "worksFor": { "@type": "Organization", "name": "Merkle", "url": "https://www.merkleinc.com" }, "url": "https://technicalseo.expert" } </script>
  • 4. #SMX #24a1 @AlexisKSanders Merkle SEO team works across a vast array of clients
  • 5. #SMX #24a1 @AlexisKSanders I’m Sophia’s #ProudAunt too. "relatedTo": { "@type": "Person", "name": "Sophia" }
  • 6. #SMX #24a1 @AlexisKSanders <script type="application/ld-json"> { "@context": "http://schema.org", "@type": “Product", "name": "Super Product!", "image": "https://example.com/image.jpg" "offers": { "@type": "Offers", "priceCurrency": "USD", "price": "12.99", } } </script>  +  Straight quote  Comma after (item) property  Offer  No comma for last property in group Answers
  • 7. #SMX #24a1 @AlexisKSanders • Overview • Why we <3 it • Practical • Advanced • Implementing A-Z (hopefully not zzz) • Common pitfalls Agenda
  • 8. #SMX #24a1 @AlexisKSanders Structured data n. Information with a high degree of organization. Structured DataUnstructured Data (e.g., text) < > Markup types JSON-LD Microdata Microformats RDFa
  • 9. #SMX #24a1 @AlexisKSanders 0 1 2 3 4 5 6 7 8 The story of web structured data: sometimes less is more.DomainUsage(Millions) 201720162003 2004 2008 2010/1 2012 2013 2014 20151997 2000 < > https://www.slideshare.net/rvguha/sem-tech2014c http://webdatacommons.org/structureddata#SMX #24a1 *
  • 10. #SMX #24a1 @AlexisKSanders (Item) type Schema.org is a vocabulary (of many), but really is more comparable to a dictionary. http://schema.org/Product Definition
  • 11. #SMX #24a1 @AlexisKSanders MICRODATA < > Implementation What is it? HTML JavaScript Easier to copy and paste on page Can be easier for templated pages Support JSON- LD Microdata versus JSON-LD * *Rich results for products not consistently population, yet
  • 12. #SMX #24a1 @AlexisKSanders <div itemscope itemtype="http://schema.org/Event"> <span itemprop="name">SMX West</span> <span itemprop="description">SMX West 2018 - 3 days of expert-led training, cutting-edge content, and exclusive networking for search marketing professionals.</span> <meta itemprop="url" content="https://marketinglandevents.com/smx/west/" /> <meta itemprop="startDate" content="2018-03-13T7:00" /> <meta itemprop="endDate" content="2018-03-15T16:15" /> </div> Mircodata* < > *Note: Missing required properties, for illustrative purposes only
  • 13. #SMX #24a1 @AlexisKSanders <script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Event", "name": "SMX West", "description": "SMX West 2018 - 3 days of expert-led training, cutting-edge content, and exclusive networking for search marketing professionals.", "url": "https://marketinglandevents.com/smx/west/", "startDate": "2018-03-13T7:00", "endDate": "2018-03-15T16:15" } </script> JSON-LD* *Note: Missing required properties, for illustrative purposes only
  • 14. #SMX #24a1 @AlexisKSanders Nesting n. where information is organized in layers or where objects contain other similar objects.
  • 15. #SMX #24a1 @AlexisKSanders Product name : offers : price : priceCurrency : @type : Offer reviewCount : aggregateRating : @type : AggregateRating ratingValue : Match Nest Me! Rated 4.5 out of 5 $7.29 (USD) 75 reviews Super Shine Apricot Shampoo brand : name : @type : Thing JĀSÖN
  • 16. #SMX #24a1 @AlexisKSanders Product name : offers : price : priceCurrency : @type : Offer reviewCount : aggregateRating : @type : AggregateRating ratingValue : Match Nest Me! Rated 4.5 out of 5 $7.29 (USD) 75 reviews Super Shine Apricot Shampoo brand : name : @type : Thing JĀSÖN Super Shine Apricot Shampoo 4.5 75 7.29 USD JĀSÖN
  • 17. #SMX #24a1 @AlexisKSanders <script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Product",Product name : offers : price : priceCurrency : @type : Offer reviewCount : aggregateRating : @type : AggregateRating ratingValue : Match Nest Me! Rated 4.5 out of 5 $7.29 (USD) 75 reviews Super Shine Apricot Shampoo brand : name : @type : Thing JĀSÖN Super Shine Apricot Shampoo 4.5 5 75 USD JĀSÖN } </script> " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " , , , , , , } } } { { { , ,
  • 18. #SMX #24a1 @AlexisKSanders Random Trivia: According to Dunderpedia, Michael Scott’s favorite ice cream is mint chocolate chip. Benefits: Why <3 Structured Data Structured Data
  • 19. #SMX #24a1 @AlexisKSanders Product AggregateRating Offer 1. Enhanced SERP Results Note: Schema.org doesn’t necessarily need to be present for rich results to appear
  • 20. #SMX #24a1 @AlexisKSanders 1. Enhanced SERP Results Movie AggregateRating Note: Schema.org doesn’t necessarily need to be present for rich results to appear
  • 21. #SMX #24a1 @AlexisKSanders 1. Enhanced SERP Results MusicEvent Note: Schema.org doesn’t necessarily need to be present for rich results to appear
  • 22. #SMX #24a1 @AlexisKSanders Article BlogPosting Book* BreadcrumbList ClaimReview* Course Dataset* Event ImageObject ItemList JobPosting LocalBusiness* 1. Google supported featured snippets with rich results Movie (WatchAction*) MusicAlbum* MusicArtist* MusicGroup* NewsArticle Occupation Organization (ContactPoint, logo, sameAs) Person (sameAs) Product (Offer) Rating AggregateRating Recipe Review* SoftwareAppplication* TVEpisode (WatchAction*) TVSeason (WatchAction*) TVSeries (WatchAction*) VideoObject WebPageElement (isAccessibleForFree for Paywall Content) WebSite (SearchAction) https://developers.google.com/search/docs/guides/ *Opt-in, express interest Note: Schema.org doesn’t necessarily need to be present for rich results to appear
  • 23. #SMX #24a1 @AlexisKSanders Share these #SMXInsights on your social channels! #SMXInsights Google offers structured data documentation for +26 item types that enhance the SERP!
  • 24. #SMX #24a1 @AlexisKSanders 2. CTR for Rich Results appears (in most cases) to be higher than results without
  • 25. #SMX #24a1 @AlexisKSanders Share these #SMXInsights on your social channels! #SMXInsights For a majority of eCommerce sites with product rich results, rich results will outperform regular listing.
  • 26. #SMX #24a1 @AlexisKSandershttps://searchengineland.com/gary-illyes-ask-anything-smx-east-285706 @methode Gary Illyes Google WebmasterTrendsAnalyst (House Elf and Chief of Sunshine and Happiness*) *Somebody needs to give him some socks “I want to live in a world where schema is not that important, but currently, we need it. If a team at Google recommends it, you probably should make use of it, as schema helps us understand the content on the page, and it is used in certain search features (but not in rankings algorithms).” 3. Gary at SMX - Google uses structured data to better understand pages
  • 27. #SMX #24a1 @AlexisKSanders • Google doesn’t mind if people markup non- supported markup (change in SERP may not be noticeable) • We don’t use Schema.org as a quality factor • Start with Google Search Documentation • Prioritize snippets and what immediately provides value • It can help extract entities better Google Webmaster Hangout 2/1/18 ~42 Minutes: https://goo.gl/dsZRc6 @JohnMu John Mueller Google WebmasterTrendsAnalyst 4. John on Webmaster Hangouts - Google is using structured data to extract entities
  • 28. #SMX #24a1 @AlexisKSanders 4. Structured data adds to Semantic Relevance (i.e., what your business is “known for”) “Known for” = representative term (e.g. [server], [host], [dinner] in article about restaurant) Google Patent: Assigning terms of interest to an entity 8,589,399, 3/26/12 Example of Associating Terms with Business Listing
  • 29. #SMX #24a1 @AlexisKSanders 4.5 It all boils down to confidence in answers Patent: Synonym identification based on co-occurring terms 8,538,984, 3/3/12 How confident are search engines that the information is trustworthy and useful? My Friend, Gia
  • 30. #SMX #24a1 @AlexisKSanders 5. Support your paid team - Product Merchant Center Feed Updates with Product Structured data (March 2017) https://support.google. com/merchants/answe r/6069143 Structured data markup must be present in the HTML returned from the web server (i.e., no JavaScript generated tags) Benefits: • Automatic item updates • Google Sheets Merchant Center add-on
  • 31. #SMX #24a1 @AlexisKSanders 6. Future: Support Voice (hypothesis) According to Wikipedia, ‘El Pueblo de San José de Guadalupe was founded by José Joaquín Moraga on November 29, 1777, the first pueblo-town not associated with a mission or a military post in upper Las Californias.’ [who discovered san jose] Google Mini pulls from featured snippets. Featured snippets appear when Google has high confidence in usefulness of response. Structured data can support confidence ratings.
  • 32. #SMX #24a1 @AlexisKSanders Share these #SMXInsights on your social channels! #SMXInsights • Microdata: 76% • JSON-LD: 25% • OGP: 68% • Twitter Summary Cards: 27% +25K eCommerce URLs populating with featured snippets: Twitter SEO Experiments: https://goo.gl/fRzmgf Important Note: Correlation does not imply causation. Huge thanks to
  • 33. #SMX #24a1 @AlexisKSanders Share these #SMXInsights on your social channels! #SMXInsights Top Occurring Microdata for eCom with Snippet: Twitter SEO Experiments: https://goo.gl/fRzmgf Huge thanks to Important Note: Correlation does not imply causation. OfferCatalog, 18% ListItem, 14% AggregateRating, 9% Product, 8%Review, 8% Rating, 7% NewCondition, 6% Offer, 5% Thing, 4% BreadcrumbList, 4% Other, 17%
  • 34. #SMX #24a1 @AlexisKSanders Share these #SMXInsights on your social channels! #SMXInsights Top Occurring JSON-LD for eCom with Snippets: Twitter SEO Experiments: https://goo.gl/fRzmgf Huge thanks to ListItem, 25% Offer, 16% Product, 15%WebPage, 6% BreadcrumbList, 5% Organization, 4% SiteNavigationElement, 4% AggregateRating, 3% WebPageElement, 3% ImageObject, 3% Other, 16% Important Note: Correlation does not imply causation.
  • 35. #SMX #24a1 @AlexisKSanders 6. Future: Support Voice (speculative) http://pending.schema.org/speakable http://pending.schema.org/SpeakableSpecification http://money.cnn.com/2018/02/18/media/black-panther-box-office/index.html
  • 36. #SMX #24a1 @AlexisKSanders Minesweeper cheat code: XYZZY+ Shift-Enter + Enter, watch dots in upper left corner of frame Practical Schema for pragmatic, busy people
  • 37. #SMX #24a1 @AlexisKSanders 0 500,000 1,000,000 1,500,000 2,000,000 2,500,000 3,000,000 ListItem WebPage Event Place PostalAddress LocalBusiness Person Organization SearchAction WebSite Popular Schema: Top 10 JSON-LD by Domain http://webdatacommons.org/structureddata Sept '14 Oct '14 Jan '15 Jan '15 Sept '14 Dec '15 Dec '15 Dec '15 Aug ‘16
  • 38. #SMX #24a1 @AlexisKSanders 0 200,000 400,000 600,000 800,000 1,000,000 Organization PostalAddress Offer Article Person Product Blog WPHeader SiteNavigationElement WebPage Popular Schema: Top 10 Microdata by Domain < > http://webdatacommons.org/structureddata
  • 39. #SMX #24a1 @AlexisKSanders Practical Schema: All sites BreadcrumbList Person Organization WebSite ItemList Properties itemListElement sameAs logo, contactPoint, sameAs potentialAction itemListElement TypeMarking up Breadcrumbs Person Organization Sitelink Searchbox Carousel Lists
  • 41. #SMX #24a1 @AlexisKSanders Step 1: Navigate to JSON-LD Schema Markup Generator https://technicalseo.com/seo-tools/schema-markup-generator
  • 42. #SMX #24a1 @AlexisKSanders Step 2: Select your Item Type from Dropdown Menu https://technicalseo.com/seo-tools/schema-markup-generator
  • 43. #SMX #24a1 @AlexisKSanders Step 3: Fill-in-the-Blank As you type, the JSON-LD will Update https://technicalseo.com/seo-tools/schema-markup-generator
  • 44. #SMX #24a1 @AlexisKSanders Step 4: Click “G Validate” to test in Google’s Structured Data Testing Tool https://technicalseo.com/seo-tools/schema-markup-generator
  • 45. #SMX #24a1 @AlexisKSanders Implementing Practical Schema - Intermediate https://developers.g oogle.com/search/d ocs/guides/
  • 46. #SMX #24a1 @AlexisKSanders Step 1: Read Guidelines - Give rules and expands on Google’s usage https://developers.google.com/search/docs/guides/ Rules Additional Opportunity
  • 47. #SMX #24a1 @AlexisKSanders Step 2: Review Item Properties (especially note “Required”)! https://developers.google.com/search/docs/guides/ Required Properties
  • 48. #SMX #24a1 @AlexisKSanders Step 3: Check out Example Markups https://developers.google.com/search/docs/guides/ Examples
  • 49. #SMX #24a1 @AlexisKSanders Step 4: Reverse-engineer by replacing RED values https://developers.google.com/search/docs/guides/ Update Red Properties (JSON- LD)
  • 50. #SMX #24a1 @AlexisKSanders MPH Average Human = 8; Snake = 12; Mongoose = 20; Usain Bolt = 27.8; Panther = 36 Schema for overachievers
  • 51. #SMX #24a1 @AlexisKSanders Schema.org (for brave souls) http://schema.org/d ocs/full.html
  • 52. #SMX #24a1 @AlexisKSanders Stages of Working with Schema.org ::a ton of confused stares:: ::intense concentration:: ::coffee + intense concentration:: ::unlocking the eternal mysteries within Schema.org:: http://schema.org/docs/full.html
  • 53. #SMX #24a1 @AlexisKSanders Step 1: Select Item Type from Schema.org’s Full Hierarchy http://schema.org/docs/full.html Select For All Extensions
  • 54. #SMX #24a1 @AlexisKSanders Item Type Page http://schema.org/docs/full.html http://schema.org/Aquarium (Item) type Where lives in hierarchy Description Usage
  • 55. #SMX #24a1 @AlexisKSanders Item Properties, Expected Type, and Description http://schema.org/docs/full.html http://schema.org/Aquarium
  • 56. #SMX #24a1 @AlexisKSanders Organization of Item Properties http://schema.org/docs/full.html CivilStructure Place Thing http://schema.org/Aquarium
  • 57. #SMX #24a1 @AlexisKSanders “Expected Type” tells you what needs to be nested Nest everything other than data types • Boolean • False • True • Date • DateTime • Number • Float • Integer • Text • URL • Time Data Types http://schema.org/Aquarium Game – Should I be nested? http://schema.org/docs/full.html
  • 58. #SMX #24a1 @AlexisKSanders “Expected Type” tells you what needs to be nested Nest everything other than data types • Boolean • False • True • Date • DateTime • Number • Float • Integer • Text • URL • Time Data Types http://schema.org/Aquarium Game – Should I be nested? Text - no Map - yes URL - no Boolean - no Text - no ImageObject - yes URL - no Integer - no OHS - yes ImageObject - yes Photograph – yes Boolean -no http://schema.org/docs/full.html
  • 59. #SMX #24a1 @AlexisKSanders Step 2: List Item Properties, Expected Type, and Values http://schema.org/docs/full.html http://schema.org/Aquarium
  • 60. #SMX #24a1 @AlexisKSanders Step 3: Add Syntax (JSON-LD) <script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Aquarium", "name": "National Aquarium", "alternateName": "National Aquarium in Baltimore", "telephone": "+1-410-576-3800", "address": { "@type": "PostalAddress", "streetAddress": "501 E Pratt St", "addressLocality": "Baltimore", "addressRegion": "MD", "postalCode": "21202", "addressCountry": "US" } } </script> Beginning Type Properties Type Properties end http://schema.org/Aquarium http://schema.org/docs/full.html *Note: Missing required properties, for illustrative purposes only
  • 61. #SMX #24a1 @AlexisKSanders Step 3: Add Syntax (Microdata) <div itemscope itemtype="http://schema.org/Aquarium"> <span itemprop="name">National Aquarium</span> <meta itemprop="name" content="National Aquarium in Baltimore" /> <span itemprop="telephone">+1-410-576-3800</span> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress">501 E Pratt St</span> <span itemprop="addressLocality">Baltimore</span> <span itemprop="addressRegion">MD</span> <span itemprop="postalCode">21202</span> <span itemprop="addressCountry">US</span> </div> </div> http://schema.org/docs/full.html Type Properties Type Properties end http://schema.org/Aquarium *Note: Missing required properties, for illustrative purposes only
  • 62. #SMX #24a1 @AlexisKSanders Pitfall Cheat Code: Left, Square, Circle, Down, Square, X, Square, Circle to get unlimited canteen. Common Pitfalls You
  • 63. #SMX #24a1 @AlexisKSanders Pitfall #1 Syntax • “” are not the same as "" – Microsoft switches "" to “” – Use a text editor • Mind your Commas • Tip: Pay attention to in SDTT
  • 64. #SMX #24a1 @AlexisKSanders Pitfall #2 Vocabulary • Pay attention to required/allowed properties • Schema.org types and properties are case sensitive reference • Tip: Check in the Structured Data TestingTool Vocabulary
  • 65. #SMX #24a1 @AlexisKSanders Pitfall #3 • Adding information that is not on the page • Check Google’s Structured Data Policies: https://developers.google.com/structure d-data/policies Policy Violation
  • 66. #SMX #24a1 @AlexisKSanders Pitfall #4 • Make sure to attribute properties to correct item type – E.g., using “name” and giving the location the event name • Tip: Pay close attention to {} and itemscope Nesting Errors
  • 67. #SMX #24a1 @AlexisKSanders Dwight, At 3:30 p.m. the coffee at SMX is okay. No instructions to follow. Cordially, Future Dwight Future Predictions
  • 68. #SMX #24a1 @AlexisKSanders Future Predictions Google Schema.org Support AboutPage ApartmentComplex AudioObject AutoDealer Brand CollectionPage Comment ContactPage Corporation Hotel 1. Top Schema.org usage without Google documentation (for websites): ImageGallery MusicPlaylist MusicRecording PriceSpecification RealEstateAgent Residence Store Table UserComments ViewAction
  • 69. #SMX #24a1 @AlexisKSanders Future Predictions Google Schema.org Support 2. Item types that support voice efforts SpeakableSpecification HowTo HowToDirection HowToSection HowToStep HowToTip HowToDirection HowToItem HowToSupply HowToTool HowToStep HowToTip QAPage Question Answer
  • 70. #SMX #24a1 @AlexisKSanders Future Predictions Google Schema.org Support 3. More for publishing and eCommerce (especially actions) AnalysisNewsArticle BackgroundNewsArticle OpinionNewsArticle ReportageNewsArticle ReviewNewsArticle EmployerReview UserReview ProductIndividualProduct ProductModel SomeProducts BuyAction QuoteAction GS1 Publishing eCommerce
  • 71. #SMX #24a1 @AlexisKSanders Future Predictions Google Schema.org Support 4. Things users want, e.g., medical answers from Dr. Google (http://health- lifesci.schema.org) LifestyleModificationDiet PhysicalActivity ExercisePlan MedicalSignOrSymptom MedicalSign VitalSign MedicalSymptom MedicalCondition InfectiousDisease MedicalGuideline MedicalProcedure DiagnosticProcedure PhysicalExam SurgicalProcedure TherapeuticProcedure http://health-lifesci.schema.org Proactive Health Reactive Health
  • 72. #SMX #24a1 @AlexisKSanders Fun stuff for you  https://technicalseo.com /homework/structured-data/ https://technicalseo.com /seo-tools/schema-markup- generator/visual/
  • 73. #SMX #24a1 @AlexisKSanders @methode Gary Illyes @JarnoVanDriel JarnoVan Driel @aaranged Aaron Bradley Experts to Follow @maxxeight Max Prin @searchliaison Danny Sullivan @JohnMu John Mueller
  • 74. #SMX #24a1 @AlexisKSanders https://www.flaticon.com/authors/: • dinosoftlabs • eucalyp • freepik • gregor-cresnar • maxim-basinski • nikita-golubev • pixel-buddha • pixel-perfect • popcorns-arts • smashicons • vectors-market • basic-flat-icons Icon Sources
  • 75. #SMX #24a1 @AlexisKSanders LEARN MORE: UPCOMING @SMX EVENTS THANK YOU! SEE YOU AT THE NEXT #SMX @AlexisKSanders /in/alexissanders

Notas del editor

  1. https://www.slideshare.net/rvguha/sem-tech2014c http://webdatacommons.org/structureddata/ 97 – RDF 00 – FOAF, DAML 01 - OWL DL/QL/EL/RL 03 – SPARQL, Microformats 04 – SIOC, RDFa 08 - Monkey 09 – SKOS 10 – Schema.org, JSON-LD 10 – Schema.org 12 – Bing’s documentation 15 – Google Recipe JSON-LD 16 – Google JSON-LD Support for Product/Review 16 – Google revamps documentation Sitelinks search box in Google search results 5-Sep-14 Organization logos in Google search results - JSON-LD 21-Oct-14 Social profiles in Google Knowledge Graph 15-Jan-15 Event rich snippets in Google search results - JSON-LD 15-Jan-15 Product rich snippets in Google search results - JSON-LD 3-Feb-16 Review rich snippets in Google search results - JSON-LD 3-Feb-16 Google adds JSON-LD support for breadcrumbs 12-Aug-16 Google Merchant Center adds JSON-LD support 28-Mar-17
  2. More of the quote: Structured data. This is one of those things that i want you to pay lots of attention to this year. We launched a bunch of search features that are based on structured data. It was badges on image search, jobs was another thing, job search, recipes, movies, local restaurants, courses and a bunch of other things that rely solely on structure data, schema.org annotations. It is almost like we started building lots of new features that rely on structured data, kind of like we started caring more and more and more about structured data. That is an important hint for you if you want your sites to appear in search features, implement structured data. ….But more importantly, add structure data to your pages because during indexing, we will be able to better understand what your site is about.
  3. Sitelinks search box in Google search results 5-Sep-14 Organization logos in Google search results - JSON-LD 21-Oct-14 Social profiles in Google Knowledge Graph 15-Jan-15 Event rich snippets in Google search results - JSON-LD 15-Jan-15 Site name in search results - ~May 2015 https://web.archive.org/web/20151203223607/https://developers.google.com/structured-data/local-businesses/ dec 2015 Product rich snippets in Google search results - JSON-LD 3-Feb-16 Review rich snippets in Google search results - JSON-LD 3-Feb-16 Google adds JSON-LD support for breadcrumbs 12-Aug-16 Google Merchant Center adds JSON-LD support 28-Mar-17
  4. 2/14 – Live Coverage Likely because: 1. They’ll implement due to competitive nature. 2. It’s a low risk industry.