Need Help? Talk to Our Experts
Offline events have had no other option than to cancel due to COVID-19, and with good reason. In this time of crisis, safety and social distancing are of the utmost importance. However, there may still be an opportunity for event creators to “go online.”
Events held exclusively online are becoming more common and perhaps you’re thinking of hosting your own. If so, do yourself a favor and add this line item to your event plan – markup event pages with structured data. As you’re likely aware, using structured data helps Google understand the content of your site and may enable special search result features.
So, what structured data types do I advise? For your virtual event, consider adding both Event and Video structured data to your website. Let’s review the benefits of each, confirm Google’s requirements, and then look at what implementation may look like for you:
The event experience makes it easier for people to discover and attend events through Google Search results and other Google products. This feature brings some key benefits:
(source: https://developers.google.com/search/docs/data-types/event)
NOTE: If you need to convince stakeholders of the importance of structured data, lead with this – beyond our own website, Google will also crawl/gather event details from 3rd party event websites. If their details are outdated and inaccurate (which occasionally happens), and you’re not sharing current and accurate event details via structured data, attendee experience and overall attendance may be negatively impacted due to conflicting dates and times, inaccurate pricing information, poorly written event descriptions, etc.
To be eligible for display in Google’s enhanced search results, the following properties are required:
The recommended properties below can be added as well. They enable a higher degree of customization within rich results and may provide a better overall user experience:
Implementation is quite easy thanks to JSON-LD (Google’s preferred structured data over Microdata and RDFa). Once you’ve selected the applicable properties for your event, incorporate JSON-LD structured data snippet into the <head> section of your event page. If you’re hosting a free online event, it may look something like this:
<html> <head> <title>Our Big Event</title> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Event", "name": "The Big Company Event 2020", "startDate": "2020-07-21T09:00:00-07:00", "endDate": "2020-07-21T17:00-07:00", "eventStatus": "https://schema.org/EventScheduled", "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode", "location": { "@type": "VirtualLocation", "url": "https://theurlwhereattendeescanjoin.com/" }, "image": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "description": "Join us for our big 2020 event!", "isAccessibleForFree": true, "organizer": { "@type": "Organization", "name": "Your company name", "url": "https://www.companyhomepage.com" } } </script> </head> <body> </body> </html>
NOTE: Be sure to test the accuracy of your code snippet with Google’s Structured Data Testing Tool prior to implementation and post launch.
The LIVE Badge! Google GA’d this feature in December 2018, and if you haven’t adopted, now is the time.
To be eligible for Google’s LIVE badge, nest the following properties in your VideoObject:
Google also clarifies that if you’re adding BroadcastEvent to livestream videos, you’ll need to follow these guidelines:
(Source: https://developers.google.com/search/docs/data-types/video#livestream-guidelines)
To use the Indexing API, follow the steps below.
(Source: https://developers.google.com/search/apis/indexing-api/v3/quickstart)
Once again, we’ll write the JSON-LD structured data snippet and incorporate into the <head> section of our livestream video pages. The result would look something like this:
<html> <head> <title>Our Big Event 2020 Keynote - Livestream</title> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "VideoObject", "name": "Keynote Presentation", "description": "Tune in to hear the latest about our company!", "thumbnailUrl": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "uploadDate": "2020-07-21", "duration": "T1H20M35S", "contentUrl": "https://www.example.com/video/123/file.mp4", "publication": { "@type": "BroadcastEvent", "name": "Keynote Presentation by XYZ", "isLiveBroadcast": true, "startDate": "2020-07-21T09:00:00-07:00", "endDate": "2020-07-21T10:20:35-07:00" }, "interactionStatistic": { "@type": "InteractionCounter", "interactionType": { "@type": "http://schema.org/WatchAction" }, "userInteractionCount": 150 } } </script> </head> <body> </body> </html>
I look forward to a time when mixed online/offline events are once again permitted. But in the meantime, take advantage of these structured data opportunities to boost event engagement and livestream views.
[ad_2]Source link
Digital Strategy Consultants (DSC) © 2019 - 2024 All Rights Reserved|About Us|Privacy Policy
Refund Policy|Terms & Condition|Blog|Sitemap