Strukturierte Daten für Aktivitäten für zu Hause (VirtualLocation) (VirtualLocation
)
Wenn du deinen Nutzern helfen möchtest, Aktivitäten zu finden, denen sie zu Hause nachgehen können, kannst du deinen Veranstaltungs- und Videoseiten strukturierte Daten hinzufügen. Wenn Nutzer Aktivitäten recherchieren, denen sie zu Hause nachgehen können, erscheinen Videos und Onlineveranstaltungen in einem Rich-Suchergebnis. Nutzer können dann auf ein Video oder einen Kurs klicken, um sich weitere Details anzusehen, z. B. eine Beschreibung der Aktivität oder Informationen zur Registrierung, oder den Inhalt direkt zu starten.
Hier sind ein paar Beispiele für Inhaltstypen der Funktion "Aktivitäten für Zuhause":
- Anstehender Livestream
- Bereits aufgenommenes Video
- Onlineveranstaltung
Verfügbarkeit der Funktion
Rich-Suchergebnisse zu Aktivitäten für zu Hause sind derzeit nur auf Englisch und in den USA verfügbar. Die Funktion kann auf Mobilgeräten genutzt werden. Derzeit werden die Ergebnisse nur für fitnessbezogene Suchanfragen angezeigt, z. B. "online sport" oder "yoga zu Hause".
Richtlinien zur Teilnahmeberechtigung
Damit Inhalte als Rich-Suchergebnis zu Aktivitäten für zu Hause angezeigt werden können, musst du die folgenden Richtlinien umsetzen:
- Füge gemäß der Dokumentation strukturierte Daten vom Typ
Event
oderVideo
hinzu. StrukturierteEvent
-Daten sind normalerweise für Onlineveranstaltungen sinnvoll, strukturierteVideo
-Daten für veröffentlichte Videos. - Veranstaltungen müssen virtuelle Veranstaltungen sein, keine realen. Achte bei den strukturierten Daten des Typs
Event
auf Folgendes:- Setze
eventAttendanceMode
aufOnlineEventAttendanceMode
. - Verwende den Typ
VirtualLocation
für das Attributlocation
. - Füge das Attribut
location.url
hinzu. - Gib die richtige Zeitzone an. Da es keinen physischen Standort gibt, anhand dessen die richtige Zeit überprüft werden kann, ist es für Onlineveranstaltungen äußerst wichtig, die richtige Zeitzone festzulegen.
- Setze
- Bei Videos ist es wichtig, die Attribute
description
undduration
hinzuzufügen, da Google so Informationen dazu erhält, worum es im Video geht. Wenn dein Video ein anstehender Livestream ist, kannst du beide Markup-Typen (Video
undEvent
) hinzufügen, dies ist jedoch nicht zwingend erforderlich. Wenn du jedoch Markup des TypsVideo
für den Livestream verwendest, empfehlen wir,BroadcastEvent
-Attribute hinzuzufügen und die Richtlinien für LIVE-Logos umzusetzen.
Beispiele
Video
Hier ein Beispiel für eine Videoseite mit strukturierten Video
-Daten.
<html> <head> <title>20 Min Aerobic Workout Reduction</title> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "VideoObject", "name": "20 Min Aerobic Workout Reduction", "description": "Get your exercise in, from home. Watch this quick 20 minute workout video.", "thumbnailUrl": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "uploadDate": "2024-03-31T08:00:00+08:00", "duration": "PT20M46S", "contentUrl": "https://www.googlebotclass.com/video/123/20-min-workout.mp4", "embedUrl": "https://www.googlebotclass.com/embed/123", "interactionStatistic": { "@type": "InteractionCounter", "interactionType": { "@type": "WatchAction" }, "userInteractionCount": 5647018 }, "regionsAllowed": "US" } </script> </head> <body> </body> </html>
<html itemscope itemprop="VideoObject" itemtype="https://schema.org/VideoObject"> <head> <title itemprop="name">20 Min Aerobic Workout Reduction</title> </head> <body> <meta itemprop="uploadDate" content="2024-03-31T08:00:00+08:00" /> <meta itemprop="duration" content="PT20M46S" /> <p itemprop="description">Get your exercise in, from home. Watch this quick 20 minute workout video.</p> <div itemprop="interactionStatistic" itemtype="https://schema.org/InteractionCounter" itemscope> <meta itemprop="userInteractionCount" content="5647018" /> <meta itemprop="interactionType" itemtype="https://schema.org/WatchAction" /> </div> <link itemprop="embedUrl" href="https://www.googlebotclass.com/embed/123" /> <meta itemprop="contentUrl" content="https://www.googlebotclass.com/video/123/20-min-workout.mp4" /> <meta itemprop="regionsAllowed" content="US" /> <meta itemprop="thumbnailUrl" content="https://example.com/photos/1x1/photo.jpg" /> </body> </html>
Event
Hier ein Beispiel für eine Online-Veranstaltungsseite mit strukturierten Event
-Daten.
<html> <head> <title>Boxing Workout</title> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Event", "name": "Boxing Workout", "startDate": "2024-07-31T06:00:00-05:00", "endDate": "2024-07-31T07:00-05:00", "eventStatus": "https://schema.org/EventScheduled", "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode", "location": { "@type": "VirtualLocation", "url": "https://googlebotcourse.com/boxing-workout" }, "image": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "description": "Boxing is a full body workout that rapidly changes the shape of your body through a dynamic workout. The technique develops lean, strong and flexible muscles.", "offers": { "@type": "Offer", "url": "https://www.googlebotcourse.com/event_offer/12345_202403180430", "price": 30, "priceCurrency": "USD", "availability": "https://schema.org/InStock", "validFrom": "2024-05-21T12:00" }, "organizer": { "@type": "Organization", "name": "Get Fit with Googlebot", "url": "https://getfitwithgooglebot.com" }, "performer": { "@type": "Person", "name": "Virginia Woolf" } } </script> </head> <body> </body> </html>
<html itemscope itemprop="Event" itemtype="https://schema.org/Event"> <head> <title itemprop="name">Boxing Workout</title> </head> <body> <meta itemprop="startDate" content="2024-07-31T06:00:00-05:00" /> <meta itemprop="endDate" content="2024-07-31T07:00-05:00" /> <meta itemprop="eventStatus" content="https://schema.org/EventScheduled" /> <meta itemprop="eventAttendanceMode" content="https://schema.org/OnlineEventAttendanceMode" /> <p itemprop="description">Boxing is a full body workout that rapidly changes the shape of your body through a dynamic workout. The technique develops lean, strong and flexible muscles.</p> <div itemprop="location" itemtype="https://schema.org/VirtualLocation" itemscope> <meta itemprop="url" content="https://googlebotcourse.com/boxing-workout" /> </div> <img itemprop="image" src="https://example.com/photos/1x1/photo.jpg" alt="" /> <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope> <meta itemprop="url" content="https://www.googlebotcourse.com/event_offer/12345_202403180430" /> <meta itemprop="price" content="30" /> <meta itemprop="priceCurrency" content="USD" /> <meta itemprop="availability" content="https://schema.org/InStock" /> <meta itemprop="validFrom" content="2024-05-21T12:00" /> </div> <div itemprop="organizer" itemtype="https://schema.org/Organization" itemscope> <meta itemprop="name" content="Get Fit with Googlebot" /> <meta itemprop="url" content="https://getfitwithgooglebot.com" /> </div> <div itemprop="performer" itemtype="https://schema.org/Person" itemscope> <meta itemprop="name" content="Virginia Woolf" /> </div> </body> </html>