SlideShare uma empresa Scribd logo
1 de 81
An Introduction to
Advanced Schema
Auditing
Beth Barnham | Liberty Marketing
slideshare.net/bethbarnham
@bethbarnham
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Beth Barnham",
"description": "Likes to adventure in the countryside, swim, and on a
rainy day, often found with a book in hand",
"jobTitle": "Technical SEO Specialist",
"knowsAbout": "Schema",
"worksFor": "Liberty Marketing",
"email": "beth.barnham@libertymarketing.co.uk",
"address": {
"@type": "PostalAddress",
"addressLocality": "Cardiff",
"addressRegion": "South Wales",
"postalCode": "CF14 5GJ",
"streetAddress": "Purbeck House, Lambourne Crescent"
},
"sameAs" : [ "https://linkedin.com/in/bethbarnham/",
"https://twitter.com/bethbarnham"]
}
</script>
What is Schema?
Converts HTML from an unstructured mess
to something easier to understand for the
search engine
Rich Snippet
Schema doesn’t need to
be maintained, but it does
need to be checked for
best practice.
Set targets that are
achievable and
actionable
It’s easy to implement
without the help of a
developer
What’s its
purpose?
Visibility
blogPosting, Article,
HowTo, Recipe
Keyword
strategy
Conversions
Event,
JobPosting,
Product
Meeting Google’s
search gallery
guidelines
Authority &
Trust
Organization, sameAs,
Website, Logo, Image
LocalBusiness
Wiki, social
media &
directories
Yeah, cool… but why
should I care?
Reactive and proactive
with its versatility
Studies suggest
3x CTR increase
10 million websites use
schema (just 1%)
8% of those said they work on
their markup once
(SEW, schema.org)
Builds relationships
between your
content, context &
entities
Most Popular Types
of Information
(Things)
Event
Examples
theatreEvent, comedyEvent, Hackathon,
BusinessEvent, eventattendanceMode
physical extension, address,
amenityFeature, branchCode, geo,
hasDriveThroughService,
CovidTestingFacility.
Place
A person of any description
including fictional.
additionalName, award, birthPlace
Person
Food recipe listing
Recipe
A listing to describe a job
opening
JobPosting
Corporation, School,
MedicalOrganization,
LocalBusiness
Organization
Schema Hierarchy
Event
Event
Textual property values
Event
Textual property values
BusinessEvent Things that they describe
Event
Textual property values
BusinessEvent Things that they describe
FoodEvent
Event
Textual property values
BusinessEvent Things that they describe
FoodEvent
PublicationEvent
Event
Textual property values
BusinessEvent Things that they describe
FoodEvent
PublicationEvent BroadcastEvent
Event
Textual property values
BusinessEvent Things that they describe
FoodEvent
PublicationEvent
BroadcastEvent
OnDemandEvent
How does it appear
within search?
JobPosting
@bethbarnham
Event
@bethbarnham
Relevancy to you
as a marketer
Knowing the best schema for your website
• Search trends in your niche
• Competitor activity
• Creativity
• Cool & interesting content
@bethbarnham
One off,
unpredictable
‘how to make
banana bread’
‘how to make
banana bread’
@bethbarnham
@bethbarnham
111,000
avg. vol
Seasonal
@bethbarnham
@bethbarnham
Evergreen
Content
@bethbarnham
No severe
trend spike
Auditing
Use Schema.org Validator for quick checks
@bethbarnham
New Client
Time Limitations
Current Situation
Pitching
Scale
Crawling
Configuration
>
Extraction
>
Structured Data
Run the crawl
>
File > Export
Scheduling
Analysing the
Audit
Writing
@bethbarnham
• Use a text or code editor
• Write using JSON, RDFa, microdata
• Templates available online
• Practice, test
Testing
Testing
Shopify
Example
Using JavaScript we were able to create IF statement’s to
specify when a set of circumstances appeared on page, i.e. a
product page with description, price, sku
Using the most common product identifiers
Using Shopify’s ‘open graph’ tags
og_price = document.querySelectorAll("meta[property='og:price:currency']")
if (og_price.length > 0) {
productName = document.querySelector("head > meta[property='og:title']").content;
productDescription = document.querySelector("head >
meta[property='og:description']").content;
productPrice = document.querySelector("head >
meta[property='og:price:amount']").content;
currencyCode = document.querySelector("head >
meta[property='og:price:currency']").content;
productImage = document.querySelector("head >
meta[property='og:image:secure_url']").content;
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const productVariant = urlParams.get('variant');
let schemaSku = "";
if (meta.product.variants.length === 1) {
schemaSku = meta.product.variants[0].sku;
} else if (!!productVariant) {
let product = meta.product.variants.find( e => e.id == productVariant);
schemaSku = product.sku;
} else {
let firstSku = meta.product.variants[0].sku;
let secondSku = meta.product.variants[1].sku;
let firstSkuArray = firstSku.split("");
let secondSkuArray = secondSku.split("");
for (let i = 0; i < firstSku.length; i++) {
if (firstSkuArray[i] === secondSkuArray[i]) {
schemaSku += firstSkuArray[i];
};
};
}
productJson = {
"@context": "https://schema.org",
"@type": "Product",
"image": productImage,
"name": productName,
"description": productDescription,
"offers": {
"@type": "Offer",
"price": productPrice,
"priceCurrency": currencyCode,
"sku": schemaSku
}
}
}
Outcome
{@context: 'https://schema.org', @type: 'Product', image:
'https://cdn.shopify.com/s/files/1/0408/3784/1060/p…0_SAMANTHA3FrontSQUARE_120
0x1200.jpg?v=1633600564', name: 'Samantha - Bobble Fur Hooded Dressing Gown',
description: 'The Samantha snow tipped Sherpa Fleece hooded dres…herpa fleece
fabric with snow tipped finish Knee-', …}
@context: "https://schema.org"
@type: "Product"
description: "The Samantha snow tipped Sherpa Fleece hooded dressing gown is
the perfect companion for those frosty winter mornings and cold winter nights.
The high quality, soft touch signature fleece material is super cosy and comes
in three winter colours. Signature, high quality Sherpa fleece fabric with
snow tipped finish Knee-"
image: "https://cdn.shopify.com/s/files/1/0408/3784/1060/products/0000_SAMANTH
A3FrontSQUARE_1200x1200.jpg?v=1633600564"
name: "Samantha - Bobble Fur Hooded Dressing Gown"
offers:
@type: "Offer"
price: "35.00"
priceCurrency: "GBP"
sku: "220-001-660-050-BAG"
Implementation
Thank you!
@bethbarnham // @_libertydigital

Mais conteúdo relacionado

Mais procurados

How To EAT Links.pptx
How To EAT Links.pptxHow To EAT Links.pptx
How To EAT Links.pptxDixon Jones
 
Beth Barnham Schema Auditing BrightonSEO Slides.pptx
Beth Barnham Schema Auditing BrightonSEO Slides.pptxBeth Barnham Schema Auditing BrightonSEO Slides.pptx
Beth Barnham Schema Auditing BrightonSEO Slides.pptxBethBarnham1
 
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...Tevfik Mert Azizoglu
 
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSimon Lesser
 
Brighton SEO April 2022 - Automate the technical SEO stuff
Brighton SEO April 2022 - Automate the technical SEO stuffBrighton SEO April 2022 - Automate the technical SEO stuff
Brighton SEO April 2022 - Automate the technical SEO stuffMichael Van Den Reym
 
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Luis
 
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkGoodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkAleyda Solís
 
The Full Scoop on Google's Title Rewrites
The Full Scoop on Google's Title RewritesThe Full Scoop on Google's Title Rewrites
The Full Scoop on Google's Title RewritesMordy Oberstein
 
Improving Crawling and Indexing using Real-Time Log File Insights
Improving Crawling and Indexing using Real-Time Log File InsightsImproving Crawling and Indexing using Real-Time Log File Insights
Improving Crawling and Indexing using Real-Time Log File InsightsSteven van Vessum
 
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesBrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesManick Bhan
 
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdfBrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf🇺🇲 🇬🇧 Kara Thurkettle
 
How to leverage SEO and other channels to expand into Chinese market
How to leverage SEO and other channels to expand into Chinese marketHow to leverage SEO and other channels to expand into Chinese market
How to leverage SEO and other channels to expand into Chinese marketGraceWeiHou1
 
Using Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsUsing Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsChris Czermak
 
Freddy Krueger's Guide to Scary Good Reporting
Freddy Krueger's Guide to Scary Good ReportingFreddy Krueger's Guide to Scary Good Reporting
Freddy Krueger's Guide to Scary Good ReportingGreg Gifford
 
How to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteHow to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteIndigo Tree Digital
 
How to Use Search Intent to Dominate Google Discover
How to Use Search Intent to Dominate Google DiscoverHow to Use Search Intent to Dominate Google Discover
How to Use Search Intent to Dominate Google DiscoverFelipe Bazon
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Chloe Smith
 
Kleecks - AI-Martech as a game changer-DEF.pdf
Kleecks - AI-Martech as a game changer-DEF.pdfKleecks - AI-Martech as a game changer-DEF.pdf
Kleecks - AI-Martech as a game changer-DEF.pdfKleecks
 

Mais procurados (20)

How To EAT Links.pptx
How To EAT Links.pptxHow To EAT Links.pptx
How To EAT Links.pptx
 
Beth Barnham Schema Auditing BrightonSEO Slides.pptx
Beth Barnham Schema Auditing BrightonSEO Slides.pptxBeth Barnham Schema Auditing BrightonSEO Slides.pptx
Beth Barnham Schema Auditing BrightonSEO Slides.pptx
 
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
SEO Automation Without Using Hard Code by Tevfik Mert Azizoglu - BrightonSEO ...
 
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing ReportsSEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
SEO Reporting: Slay the Time-Sucking Monster and Deliver Amazing Reports
 
Brighton SEO April 2022 - Automate the technical SEO stuff
Brighton SEO April 2022 - Automate the technical SEO stuffBrighton SEO April 2022 - Automate the technical SEO stuff
Brighton SEO April 2022 - Automate the technical SEO stuff
 
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
Brighton SEO - Luis Bueno Tabernero - How to do an ASO Audit like in the 90's...
 
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance FrameworkGoodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
Goodbye SEO fck ups! Learn to set an SEO Quality Assurance Framework
 
The Full Scoop on Google's Title Rewrites
The Full Scoop on Google's Title RewritesThe Full Scoop on Google's Title Rewrites
The Full Scoop on Google's Title Rewrites
 
Improving Crawling and Indexing using Real-Time Log File Insights
Improving Crawling and Indexing using Real-Time Log File InsightsImproving Crawling and Indexing using Real-Time Log File Insights
Improving Crawling and Indexing using Real-Time Log File Insights
 
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise WebsitesBrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
BrightonSEO - Master Crawl Budget Optimization for Enterprise Websites
 
Don't be a cannibal
Don't be a cannibalDon't be a cannibal
Don't be a cannibal
 
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdfBrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf
BrightonSEO April 2022 - Kara Thurkettle - Search in the Metaverse.pdf
 
How to leverage SEO and other channels to expand into Chinese market
How to leverage SEO and other channels to expand into Chinese marketHow to leverage SEO and other channels to expand into Chinese market
How to leverage SEO and other channels to expand into Chinese market
 
Using Search Intent in our Link Building Efforts
Using Search Intent in our Link Building EffortsUsing Search Intent in our Link Building Efforts
Using Search Intent in our Link Building Efforts
 
Freddy Krueger's Guide to Scary Good Reporting
Freddy Krueger's Guide to Scary Good ReportingFreddy Krueger's Guide to Scary Good Reporting
Freddy Krueger's Guide to Scary Good Reporting
 
How to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress websiteHow to improve Core Web Vitals on a WordPress website
How to improve Core Web Vitals on a WordPress website
 
How to Use Search Intent to Dominate Google Discover
How to Use Search Intent to Dominate Google DiscoverHow to Use Search Intent to Dominate Google Discover
How to Use Search Intent to Dominate Google Discover
 
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
Content Design & its Role in SEO and Accessibility [BrightonSEO Spring 2023]
 
Kleecks - AI-Martech as a game changer-DEF.pdf
Kleecks - AI-Martech as a game changer-DEF.pdfKleecks - AI-Martech as a game changer-DEF.pdf
Kleecks - AI-Martech as a game changer-DEF.pdf
 
How to control googlebot
How to control googlebotHow to control googlebot
How to control googlebot
 

Semelhante a Beth Barnham Schema Auditing BrightonSEO Slides.pptx

WordCamp Chiclana 2020 Crea schemas sin plugins
WordCamp Chiclana 2020 Crea schemas sin pluginsWordCamp Chiclana 2020 Crea schemas sin plugins
WordCamp Chiclana 2020 Crea schemas sin pluginsClosemarketing
 
GDI Seattle - Intro to JavaScript Class 4
GDI Seattle - Intro to JavaScript Class 4GDI Seattle - Intro to JavaScript Class 4
GDI Seattle - Intro to JavaScript Class 4Heather Rock
 
Quick ref capybara
Quick ref capybaraQuick ref capybara
Quick ref capybarafatec
 
Quick ref capybara
Quick ref capybaraQuick ref capybara
Quick ref capybarafatec
 
javascript.pptx
javascript.pptxjavascript.pptx
javascript.pptxhasiny2
 
SDKs, the good the bad the ugly - Japan
SDKs, the good the bad the ugly - JapanSDKs, the good the bad the ugly - Japan
SDKs, the good the bad the ugly - Japantristansokol
 
Building & Breaking Web Forms with Quaid-JS
Building & Breaking Web Forms with Quaid-JSBuilding & Breaking Web Forms with Quaid-JS
Building & Breaking Web Forms with Quaid-JScliener
 
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHP
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHPPHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHP
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHPiMasters
 
Building sustainable RESTFul services
Building sustainable RESTFul servicesBuilding sustainable RESTFul services
Building sustainable RESTFul servicesOrtus Solutions, Corp
 
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020Rob Ousbey
 
Eve - REST API for Humans™
Eve - REST API for Humans™Eve - REST API for Humans™
Eve - REST API for Humans™Nicola Iarocci
 
Web Forms People Don't Hate
Web Forms People Don't HateWeb Forms People Don't Hate
Web Forms People Don't Hatecliener
 
EWD 3 Training Course Part 9: Complex QEWD Messages and Responses
EWD 3 Training Course Part 9: Complex QEWD Messages and ResponsesEWD 3 Training Course Part 9: Complex QEWD Messages and Responses
EWD 3 Training Course Part 9: Complex QEWD Messages and ResponsesRob Tweed
 
Constance et qualité du code dans une équipe - Rémi Prévost
Constance et qualité du code dans une équipe - Rémi PrévostConstance et qualité du code dans une équipe - Rémi Prévost
Constance et qualité du code dans une équipe - Rémi PrévostWeb à Québec
 
Zensations Drupal 8 GraphQL Presentation 2015
Zensations Drupal 8 GraphQL Presentation 2015Zensations Drupal 8 GraphQL Presentation 2015
Zensations Drupal 8 GraphQL Presentation 2015Zensations GmbH
 
Modern Web Development with Perl
Modern Web Development with PerlModern Web Development with Perl
Modern Web Development with PerlDave Cross
 
KMUTNB - Internet Programming 4/7
KMUTNB - Internet Programming 4/7KMUTNB - Internet Programming 4/7
KMUTNB - Internet Programming 4/7phuphax
 
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...BethBarnham1
 
Introduction to angular js july 6th 2014
Introduction to angular js   july 6th 2014Introduction to angular js   july 6th 2014
Introduction to angular js july 6th 2014Simona Clapan
 

Semelhante a Beth Barnham Schema Auditing BrightonSEO Slides.pptx (20)

WordCamp Chiclana 2020 Crea schemas sin plugins
WordCamp Chiclana 2020 Crea schemas sin pluginsWordCamp Chiclana 2020 Crea schemas sin plugins
WordCamp Chiclana 2020 Crea schemas sin plugins
 
GDI Seattle - Intro to JavaScript Class 4
GDI Seattle - Intro to JavaScript Class 4GDI Seattle - Intro to JavaScript Class 4
GDI Seattle - Intro to JavaScript Class 4
 
Quick ref capybara
Quick ref capybaraQuick ref capybara
Quick ref capybara
 
Quick ref capybara
Quick ref capybaraQuick ref capybara
Quick ref capybara
 
javascript.pptx
javascript.pptxjavascript.pptx
javascript.pptx
 
SDKs, the good the bad the ugly - Japan
SDKs, the good the bad the ugly - JapanSDKs, the good the bad the ugly - Japan
SDKs, the good the bad the ugly - Japan
 
Building & Breaking Web Forms with Quaid-JS
Building & Breaking Web Forms with Quaid-JSBuilding & Breaking Web Forms with Quaid-JS
Building & Breaking Web Forms with Quaid-JS
 
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHP
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHPPHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHP
PHP Experience 2016 - [Workshop] Elastic Search: Turbinando sua aplicação PHP
 
Building sustainable RESTFul services
Building sustainable RESTFul servicesBuilding sustainable RESTFul services
Building sustainable RESTFul services
 
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
 
Eve - REST API for Humans™
Eve - REST API for Humans™Eve - REST API for Humans™
Eve - REST API for Humans™
 
Web Forms People Don't Hate
Web Forms People Don't HateWeb Forms People Don't Hate
Web Forms People Don't Hate
 
EWD 3 Training Course Part 9: Complex QEWD Messages and Responses
EWD 3 Training Course Part 9: Complex QEWD Messages and ResponsesEWD 3 Training Course Part 9: Complex QEWD Messages and Responses
EWD 3 Training Course Part 9: Complex QEWD Messages and Responses
 
Constance et qualité du code dans une équipe - Rémi Prévost
Constance et qualité du code dans une équipe - Rémi PrévostConstance et qualité du code dans une équipe - Rémi Prévost
Constance et qualité du code dans une équipe - Rémi Prévost
 
Symfony2
Symfony2Symfony2
Symfony2
 
Zensations Drupal 8 GraphQL Presentation 2015
Zensations Drupal 8 GraphQL Presentation 2015Zensations Drupal 8 GraphQL Presentation 2015
Zensations Drupal 8 GraphQL Presentation 2015
 
Modern Web Development with Perl
Modern Web Development with PerlModern Web Development with Perl
Modern Web Development with Perl
 
KMUTNB - Internet Programming 4/7
KMUTNB - Internet Programming 4/7KMUTNB - Internet Programming 4/7
KMUTNB - Internet Programming 4/7
 
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
Accessibility, strategy and schema - do they go hand in hand? Beth Barnham Br...
 
Introduction to angular js july 6th 2014
Introduction to angular js   july 6th 2014Introduction to angular js   july 6th 2014
Introduction to angular js july 6th 2014
 

Último

VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...aditipandeya
 
How to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessHow to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessAggregage
 
Kraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationKraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationtbatkhuu1
 
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Social Media Marketing PPT-Includes Paid media
Social Media Marketing PPT-Includes Paid mediaSocial Media Marketing PPT-Includes Paid media
Social Media Marketing PPT-Includes Paid mediaadityabelde2
 
Brand experience Dream Center Peoria Presentation.pdf
Brand experience Dream Center Peoria Presentation.pdfBrand experience Dream Center Peoria Presentation.pdf
Brand experience Dream Center Peoria Presentation.pdftbatkhuu1
 
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15SearchNorwich
 
Labour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxLabour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxelizabethella096
 
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Social media, ppt. Features, characteristics
Social media, ppt. Features, characteristicsSocial media, ppt. Features, characteristics
Social media, ppt. Features, characteristicswasim792942
 
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesSearch Engine Journal
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfVWO
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessBrighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessVarn
 

Último (20)

VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...
VIP 7001035870 Find & Meet Hyderabad Call Girls Film Nagar high-profile Call ...
 
How to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail SuccessHow to Leverage Behavioral Science Insights for Direct Mail Success
How to Leverage Behavioral Science Insights for Direct Mail Success
 
Kraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentationKraft Mac and Cheese campaign presentation
Kraft Mac and Cheese campaign presentation
 
Creator Influencer Strategy Master Class - Corinne Rose Guirgis
Creator Influencer Strategy Master Class - Corinne Rose GuirgisCreator Influencer Strategy Master Class - Corinne Rose Guirgis
Creator Influencer Strategy Master Class - Corinne Rose Guirgis
 
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 4 Gurgaon >༒8448380779 Escort Service
 
Social Media Marketing PPT-Includes Paid media
Social Media Marketing PPT-Includes Paid mediaSocial Media Marketing PPT-Includes Paid media
Social Media Marketing PPT-Includes Paid media
 
Brand experience Dream Center Peoria Presentation.pdf
Brand experience Dream Center Peoria Presentation.pdfBrand experience Dream Center Peoria Presentation.pdf
Brand experience Dream Center Peoria Presentation.pdf
 
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15
Five Essential Tools for International SEO - Natalia Witczyk - SearchNorwich 15
 
Digital Strategy Master Class - Andrew Rupert
Digital Strategy Master Class - Andrew RupertDigital Strategy Master Class - Andrew Rupert
Digital Strategy Master Class - Andrew Rupert
 
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
Generative AI Master Class - Generative AI, Unleash Creative Opportunity - Pe...
 
Labour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptxLabour Day Celebrating Workers and Their Contributions.pptx
Labour Day Celebrating Workers and Their Contributions.pptx
 
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 128 Noida Escorts >༒8448380779 Escort Service
 
Social media, ppt. Features, characteristics
Social media, ppt. Features, characteristicsSocial media, ppt. Features, characteristics
Social media, ppt. Features, characteristics
 
The Future of Brands on LinkedIn - Alison Kaltman
The Future of Brands on LinkedIn - Alison KaltmanThe Future of Brands on LinkedIn - Alison Kaltman
The Future of Brands on LinkedIn - Alison Kaltman
 
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 150 Noida Escorts >༒8448380779 Escort Service
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
 
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting GroupSEO Master Class - Steve Wiideman, Wiideman Consulting Group
SEO Master Class - Steve Wiideman, Wiideman Consulting Group
 
The Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdfThe Science of Landing Page Messaging.pdf
The Science of Landing Page Messaging.pdf
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
 
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessBrighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
 

Beth Barnham Schema Auditing BrightonSEO Slides.pptx

Notas do Editor

  1. Hey everyone! My name is Beth Barnham, a Technical SEO Specialist at Liberty Marketing, Wales’ largest dedicated digital marketing agency. I’ve been in the world of digital marketing for around five years and found my love of SEO just over four years ago. I now specialise in technical SEO, and will be talking to you about schema, one of my favourite topics.
  2. What exactly is schema? Schema refers to a framework that helps organise and interpret information, it’s also referred to as structured data. It can take the form of a featured snippet to show more relevant, rich results for the specific search intent.
  3. It’s a framework to convert unstructured data to something easier to understand for search engines. It connects the dots between what it thinks you mean and what you actually mean as a searcher. Search engines are intuitive and intelligent and are made up of millions of algorithms and machine learning practices, so making it easier to decipher specific code on your website speeds up the process. Can be in various coding forms RDFa, microdata or JSON-LD Tells search engines the context of what you’re talking about
  4. Simply write, check, implement and leave to work its magic. Ping emails from search gallery for new versions Continuous improvements in Google Search Gallery Beta
  5. Helps to set targets within your strategy Schema is adaptable and customisable. It doesn’t matter what your niche is, there’s a type that will suit your audience Whatever is going on in the industry or economy you can signal to Google what’s happening with a piece of structured data
  6. As an SEO or digital marketer you don’t have to be technical and know lots of code. There’s loads of learning resources to aid whilst you write your own, and you can implement using a custom tag in GTM – of which we’ll explore further on
  7. What do you want to achieve? If it’s visibility you want to achieve then the blogPosting, Article, HowTo, Recipe types are all areas for content strategies which will increase visibility and feed into your keyword strategy
  8. If it’s conversions, then using types such as Event, JobPosting, Product to all meet the latest Google search gallery guidelines would be the most important element.
  9. If it’s for authority and trust, using Organization, LocalBusiness and linking your entity to other entities on the web is important to signal to search engines that your business is the same as other places on the web. These all help with natural language processing and showing Google the context of your page and how you want it to be categorized as. You’re essentially telling Google, oh hey, that’s me, yeah that’s me too, oh yeah I own that one as well. Google connects all the dots and increases your authority.
  10. https://www.searchenginewatch.com/2017/04/18/the-state-of-schema-org-what-are-the-biggest-challenges-surrounding-schema-markup/ But, as a marketer, why should you care? You’re busy, you have other targets, why does this need to affect me?
  11. It’s both reactive and proactive because you can react to news and use Article posting on there for example or proactive by using Product schema on new product pages.
  12. According to Search Engine Watch’s 2018 study, there is a 3x CTR increase when using structured data on your website https://www.searchenginewatch.com/2017/04/18/the-state-of-schema-org-what-are-the-biggest-challenges-surrounding-schema-markup/
  13. There’s a massive potential here with a major gap in the market for structured data on the SERPs, so this really is why you should care.
  14. How can we position the business differently to other businesses? Supports your E-A-T and content strategy, relates your website to other entities on the web Preparing for volatility or changes in the SERPs with a widely researched strategy is important Accessible
  15. Used in tandem with properties within the "Thing" Properties are within a “Thing”, nested within one another, with arrays and nests of JS properties
  16. Anything to describe an event such as theatreEvent, BusinessEvent, hackathon, live event, online event
  17. Anything to describe where a place is located, physical extension, address, covidtestingfacility was added during the pandemic when non-medical facilities turned medical Can also appear as jobLocation, serviceLocation
  18. Any person, fictional, non-fictional, useful for blogs featuring people, book reviews, mentions of the person to signal to Google you’re talking about the specific ‘character’
  19. Great for recipe websites
  20. Job opening, job description, salary, location, attendanceMode,
  21. Anything to depict an organization
  22. Schema hierarchy and how things sit within the properties
  23. Using event as an example to showcase the hierarchy and nested values within the event type
  24. They occur as textual property values
  25. Nested within is the businessEvent
  26. Or foodEvent
  27. Or PublicationEvent
  28. Then nested within that is the broadcast event describing how the event is shown
  29. Same applies to the OnDemandEvent
  30. For the PPC job at Liberty, it shows like this in Google Jobs portal
  31. Events show up
  32. How creative can your campaigns be? What FAQ pages do you have or can you create? What are the search trends?
  33. Keeping up to date with the news and trends, what can you use in your industry?
  34. You’ve probably all had enough of banana bread after 2020, but go with me, using this phrase
  35. There’s an average 17,000 monthly searches
  36. Looking at trends, we see a spike in March, April time of 2020
  37. That’s when the spike turned into 111,000 average searches, reactive if you’re a recipe site
  38. We know that people look at inspiration for their gardens on a seasonal basis. This usually starts around spring time, March, April so we can plan for blogs and HowTo content to support this
  39. Are there ‘evergreen’ topics that occur consistently in the news? What longtail phrases can be adapted for FAQs or QAs?
  40. Are there ‘evergreen’ topics that occur consistently in the news? What longtail phrases can be adapted for FAQs or QAs? For example how to make rice generally tend to stick to the same trend, no spikes, this is the bread and butter content for your site
  41. Initial checks Like any audit, we need to check what the current situation is with whats currently on the site This is great if you want to do page-by-page or if you only have a few pages to do
  42. But its suuuuuuuuuuuper slow to do it manually
  43. Bring out the Frog
  44. Configuration > spider
  45. Go to SF Configuration Extraction and ensure structured data checkboxes are all ticked
  46. Then run the crawl with those areas ticked Export the file via file export Save as all seo spider crawl types
  47. Then go to file > scheduling Click Add
  48. Create a task, in general tab select a ‘task name’, describe what the task is in description, schedule what day and time you want it to be, and how often, weekly, monthly etc.
  49. On tab 2, start options Select crawler mode as spider, Set the seed to the URL of the website And then select the crawl config of where you want the scheduled report to save Finally, in export, check Headless (this is essential to export via Gsheets) Select a local output folder, and select the Gdrive account You can opt to overdrive new files but I tend to keep them as new, timestamped Then ‘export for data studio’ custom crawl overview, this will allow the data to be manipulated in DS
  50. Then, go to DS and set up a new report, and select your crawl as your data source, and you can customise what you want to set up, for example, if you know the site only has JSON-LD URLs, you can ignore the RDFa tab. You can highlight or customise the errors tab if there are some here
  51. In the spreadsheet I’ve linked in the notes, we can paste in the HTML URLs from the crawl we just did, and the errors will auto populate, as well as the types (depending on how many there are) we can distinguish how many different types are on the page)
  52. The second tab includes a live list of all the available types directly from the search gallery You can then go through your URLs and decide whether they’re applicable or they meet the guidelines This is best done in correlation with the Rich Snippets Testing Tool and schema.org validator
  53. Writing using a text or code editor or use a generator such as JSON-LD playground
  54. ALWAYS test, at every single stage Validator, Rich snippets testing tool Search gallery
  55. Validator, Rich snippets testing tool Search gallery
  56. Product pages
  57. What we see here is the og_price variable which is set to pull the open graph title in Shopify. As this is usually set up to pull the variable of description, amount, currency, URL We are able to pull all of these areas using this bit of JavaScript automatically to populate the page
  58. When we run this, we always specify how we want the JSON to appear and in what format, this is a typical Product template
  59. And this is what we get back, all of those variables we wanted to be extracted from the previous page, we get a nicely populated piece of Product schema with the image, description, product name, image, price, currency, SKU
  60. To implement the Shopify example we can set up a Custom HTML tag in GTM, paste in the code from the following slides
  61. Set a trigger on page view on page URLs containing products
  62. Then for other, pre-written versions of schema we can create custom HTML tags in GTM to avoid using a developer
  63. The trigger for this localBusiness is on page view when the DOM is ready (because that’s when the page has finished loading) on the specific contact URL And this is how you get your audited site
  64. Thanks very much