Schema.org hilft das Web zu verbessern, indem ein strukturiertes Markup-Schema für Daten erstellt wird, das von großen Suchmaschinen unterstützt wird.
Es bleibt dem Entwickler überlassen welche Variate er bevorzugt, ein Vorteil von JSON ist, dass es nicht direkt in den einzelnen HTML-Tags mit integriert ist sondern etwas getrennt vom normalen HTML Code in einem script-Tag ausgelagert wird.
So kann auf einem Blick erkannt werden was alles zur Auszeichnung gehört.
Demo Code für eine QAPage im JSON Format
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type":"QAPage",
"mainEntity":{
"@type": "Question",
"name": "Schema.org Strukturierte Daten Auszeichnung",
"text": "Was ist schema.org und wofür brauche ich es?",
"dateCreated": "2018-12-04T20:07Z",
"author": {
"@type": "Person",
"name": "Kunde"
},
"acceptedAnswer": {
"@type": "Answer",
"text": "Antwort Text",
"dateCreated": "2018-12-04T22:01Z",
"author": {
"@type": "Organization",
"name": "Dev-Grades Jana Tausch"
},
"url": "https://dev-grades.de/seo/schema_dot_org.html"
}
}
}
</script>
Demo Code für ein Local Business im JSON Format
<script type="application/ld+json">
"@context" : "http://schema.org",
"@type" : "FinancialService",
"name":"Finanzdienstleitser XYZ",
"address" : {
"@type": "PostalAddress",
"addressLocality": "Stadt",
"addressRegion": "Land",
"postalCode": "PLZ",
"streetAddress": "Straße" },
"openingHours": [
"Mo-Do 8:00-18:00",
"Fr 9:00-16:00"
],
"url":"https://www.url.de",
"image": "https://www.url-huber.de/img/logo.png",
"email":"info@finanzdienstleister.de",
"telephone": "Telefonnummer",
"faxNumber": "Faxnummer",
"location": {
"@type": "Place",
"geo": {
"@type": "GeoCoordinates",
"latitude": "48.640510",
"longitude": "10.528460"
}},
"priceRange": "ab 110 EUR",
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Finanzdienstleistung für Privatpersonen",
"itemListElement": [
{
"@type": "OfferCatalog",
"name": "Finanzdienstleistung Überbegriff",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Finanzdienstleistung 1"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Finanzdienstleistung 2"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Finanzdienstleistung 3"
}
}
]
}]}
}
</script>
Demo Code für ein HowToSection im JSON Format
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "HowTo",
"name": "Beschreibung für was die Anleitung ist",
"estimatedCost": {
"@type": "MonetaryAmount",
"currency": "EUR",
"value": "20"
},
"totalTime": "PT30M",
"tool": [
{
"@type": "HowToTool",
"name": "benötigtes Hilfsmittel..."
},
{
"@type": "HowToTool",
"name": "benötigte Zutat..."
}
],
"supply": {
"@type": "HowToSupply",
"name": "Ein Verbrauchsmaterial, das zur Ausführung von Anweisungen verwendet wird.",
"image": "teil.jpg"
},
"step": [
{
"@type": "HowToSection",
"name": "Vorbereitung",
"position": "1",
"itemListElement": [
{
"@type": "HowToStep",
"position": "1",
"itemListElement": [
{
"@type": "HowToDirection",
"position": "1",
"text": "Anweisung für ersten Schritt"
},
{
"@type": "HowToTip",
"position": "2",
"text": "Tipp zum Schritt 1"
}
]
},
{
"@type": "HowToStep",
"position": "2",
"itemListElement": [
{
"@type": "HowToDirection",
"position": "1",
"text": "Anweisung für zweiten Schritt"
},
{
"@type": "HowToTip",
"position": "2",
"text": "Tipp zum Schritt 2"
}
]
}
]
},
{
"@type": "HowToSection",
"name": "Nach der Vorbereitung",
"position": "2",
"itemListElement": [
{
"@type": "HowToStep",
"position": "1",
"itemListElement": [
{
"@type": "HowToDirection",
"position": "1",
"duringMedia": "beispielbild.jpg",
"text": "Anweisung für ersten Schritt"
}
]
},
{
"@type": "HowToStep",
"position": "2",
"itemListElement": [
{
"@type": "HowToDirection",
"position": "1",
"beforeMedia": {
"@type": "ImageObject",
"contentUrl": "beispielbild1.jpg"
},
"afterMedia": {
"@type": "ImageObject",
"contentUrl": "beispielbild2.jpg"
},
"text": "Anweisung für zweiten Schritt."
},
{
"@type": "HowToTip",
"position": "2",
"text": "Tipp für Schritt 2"
}
]
}
]
}
]
}
</script>