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

Mais procurados (20)

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
 
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
 
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
 
EAT: Have We Been Looking At It Backwards
EAT: Have We Been Looking At It BackwardsEAT: Have We Been Looking At It Backwards
EAT: Have We Been Looking At It Backwards
 
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
 
The Hidden Gems of Low search volume
The Hidden Gems of Low search volumeThe Hidden Gems of Low search volume
The Hidden Gems of Low search volume
 
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
 
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 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
[BrightonSEO 2022] Unlocking the Hidden Potential of Product Listing Pages
 
How to Implement Machine Learning in Your Internal Linking Audit - Lazarina S...
How to Implement Machine Learning in Your Internal Linking Audit - Lazarina S...How to Implement Machine Learning in Your Internal Linking Audit - Lazarina S...
How to Implement Machine Learning in Your Internal Linking Audit - Lazarina S...
 
SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022SEO at Scale - BrightonSEO April 2022
SEO at Scale - BrightonSEO April 2022
 
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
 
SEO low hanging Fruit - Identifying High Impact Opportunities Fast #SEOforUkr...
SEO low hanging Fruit - Identifying High Impact Opportunities Fast #SEOforUkr...SEO low hanging Fruit - Identifying High Impact Opportunities Fast #SEOforUkr...
SEO low hanging Fruit - Identifying High Impact Opportunities Fast #SEOforUkr...
 
BrightonSEO - NLP for SEOs - How to optimise your content for BERT.pptx
BrightonSEO - NLP for SEOs - How to optimise your content for BERT.pptxBrightonSEO - NLP for SEOs - How to optimise your content for BERT.pptx
BrightonSEO - NLP for SEOs - How to optimise your content for BERT.pptx
 
How SEO changes, as we say bye bye to cookies
How SEO changes, as we say bye bye to cookiesHow SEO changes, as we say bye bye to cookies
How SEO changes, as we say bye bye to cookies
 
The Big SEO Migration - Learnings from a first time hiker
The Big SEO Migration - Learnings from a first time hiker The Big SEO Migration - Learnings from a first time hiker
The Big SEO Migration - Learnings from a first time hiker
 
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
 
GretaMunari - The redemption of content automation
GretaMunari - The redemption of content automationGretaMunari - The redemption of content automation
GretaMunari - The redemption of content automation
 
How to get more traffic with less content - BrightonSEO
How to get more traffic with less content - BrightonSEOHow to get more traffic with less content - BrightonSEO
How to get more traffic with less content - BrightonSEO
 
Diginius - DuckDuckGo, Privacy and the Future of Search
Diginius - DuckDuckGo, Privacy and the Future of Search Diginius - DuckDuckGo, Privacy and the Future of Search
Diginius - DuckDuckGo, Privacy and the Future of Search
 

Semelhante a Beth Barnham Schema Auditing BrightonSEO Slides.pptx

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
Web à Québec
 
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
Simona 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

Último (20)

Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfMicro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
 
The+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdfThe+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdf
 
20180928 Hofstede Insights Conference Milan The Power of Culture Led Brands.pptx
20180928 Hofstede Insights Conference Milan The Power of Culture Led Brands.pptx20180928 Hofstede Insights Conference Milan The Power of Culture Led Brands.pptx
20180928 Hofstede Insights Conference Milan The Power of Culture Led Brands.pptx
 
Press Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdfPress Release Distribution Evolving with Digital Trends.pdf
Press Release Distribution Evolving with Digital Trends.pdf
 
Unraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxUnraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptx
 
Major SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain DigitalMajor SEO Trends in 2024 - Banyanbrain Digital
Major SEO Trends in 2024 - Banyanbrain Digital
 
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
 
[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered
 
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdfChoosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
Choosing the Right White Label SEO Services to Boost Your Agency's Growth.pdf
 
personal branding kit for music business
personal branding kit for music businesspersonal branding kit for music business
personal branding kit for music business
 
Unveiling the Legacy of the Rosetta stone A Key to Ancient Knowledge.pptx
Unveiling the Legacy of the Rosetta stone A Key to Ancient Knowledge.pptxUnveiling the Legacy of the Rosetta stone A Key to Ancient Knowledge.pptx
Unveiling the Legacy of the Rosetta stone A Key to Ancient Knowledge.pptx
 
Best 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In ChandigarhBest 5 Graphics Designing Course In Chandigarh
Best 5 Graphics Designing Course In Chandigarh
 
Social media, ppt. Features, characteristics
Social media, ppt. Features, characteristicsSocial media, ppt. Features, characteristics
Social media, ppt. Features, characteristics
 
Elevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdfElevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdf
 
Enhancing Business Visibility PR Firms in San Francisco
Enhancing Business Visibility PR Firms in San FranciscoEnhancing Business Visibility PR Firms in San Francisco
Enhancing Business Visibility PR Firms in San Francisco
 
2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.com2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.com
 
Alpha Media March 2024 Buyers Guide.pptx
Alpha Media March 2024 Buyers Guide.pptxAlpha Media March 2024 Buyers Guide.pptx
Alpha Media March 2024 Buyers Guide.pptx
 
SP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdfSP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdf
 
How consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their livesHow consumers use technology and the impacts on their lives
How consumers use technology and the impacts on their lives
 
Instant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best PracticesInstant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best Practices
 

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