Beispiel zu Schema-Tag WebPage
<div itemscope itemtype="https://schema.org/WebPage"> <meta itemprop="name" content="Startseite"> <meta itemprop="inLanguage" content="de"> <meta itemprop="url" content="https://www.beispiel.de"> </div>
Schema-Tag Beispiel zu Article / NewsArticle
<article itemscope itemtype="https://schema.org/Article"> <h1 itemprop="headline">Beispielartikel</h1> <p itemprop="author">Max Beispiel</p> <time itemprop="datePublished" datetime="2024-05-01">1. Mai 2024</time> <p itemprop="articleBody">Dies ist der Text des Artikels.</p> </article>
Beispiel zu Schema-Tag Person
<div itemscope itemtype="https://schema.org/Person"> <span itemprop="name">Anna Schmidt</span><br> <span itemprop="jobTitle">Webentwicklerin</span><br> <span itemprop="email">anna@example.com</span> </div>
Beispiel zu Schema-Tag Organization
<div itemscope itemtype="https://schema.org/Organization"> <span itemprop="name">Beispiel GmbH</span><br> <span itemprop="url">https://www.beispiel-gmbh.de</span><br> <span itemprop="email">kontakt@beispiel-gmbh.de</span> </div>
Wofür wird LocalBusiness verwendet?
<div itemscope itemtype="https://schema.org/LocalBusiness">
<span itemprop="name">Café Beispiel</span><br>
<div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
<span itemprop="streetAddress">Hauptstraße 1</span>,
<span itemprop="addressLocality">Musterstadt</span>
</div>
<span itemprop="telephone">+49 123 456789</span><br>
<span itemprop="openingHours">Mo-Fr 08:00-17:00</span>
</div>
Schema-Tag Beispiel zu einem Event
<div itemscope itemtype="https://schema.org/Event">
<span itemprop="name">Open Air Konzert</span><br>
<time itemprop="startDate" datetime="2025-07-25T19:00">25. Juli 2025, 19:00 Uhr</time><br>
<div itemprop="location" itemscope itemtype="https://schema.org/Place">
<span itemprop="name">Stadtpark</span>
</div>
</div>
Beispiel Schema-Tag zu Product
<div itemscope itemtype="https://schema.org/Product">
<span itemprop="name">Smartphone X100</span><br>
<span itemprop="description">64 GB, OLED-Display</span><br>
<div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
Preis: <span itemprop="price">399</span> <span itemprop="priceCurrency">EUR</span>
</div>
</div>
Beispiel Schema-Tag zu Offer
<div itemscope itemtype="https://schema.org/Offer"> <span itemprop="price">99.00</span> <span itemprop="priceCurrency">EUR</span><br> <link itemprop="availability" href="https://schema.org/InStock">Sofort lieferbar</link> </div>
Beispiel zu Schema-Tag Review / Rating
<div itemscope itemtype="https://schema.org/Review">
<span itemprop="author">Lisa Testerin</span><br>
<span itemprop="reviewBody">Sehr gutes Produkt!</span><br>
<div itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">
Bewertung: <span itemprop="ratingValue">5</span> von <span itemprop="bestRating">5</span>
</div>
</div>