der_Mausbiber: Welches Schema sollte ich nehmen? LocalBusiness/Organization/WebPage/Article?

Beitrag lesen

problematische Seite

Okay, das ist schon mal sehr hilfreich Danke.

Allerdings arbeite ich nicht mit RDFa sondern mit ld+json. Bin noch ein wenig damit beschäftigt das umzuarbeiten.

Ich habe bisher den Abschnitt soweit:

    <script type="application/ld+json">
    {
      	"@context": "http://schema.org",
      	"@type": "LocalBusiness",
      	"address": {
        	"@type": "PostalAddress",
        	"addressLocality": "Wetzlar",
        	"streetAddress": "Altenbergerstrasse 53"
      	},
      	"description": "Seit über 80 Jahren Ihre verlässliche Schreinerei in Wetzlar bei allen Fragen rund um System- und WC-Trennwände, Einbauschränke und den Möbel-/Innenausbau.",
      	"name": "Rink GmbH",
      	"telephone": "06441 - 55 71",
      	"faxNumber": "06441 - 59 94",
		"email": "info@trennwand-rink.com",
		"logo": "https://s3.eu-central-1.amazonaws.com/rink.cdn/ui/logo.jpg",
		"url": "http://www.trennwand-rink.com/trennwaende",
		"image": "https://s3.eu-central-1.amazonaws.com/rink.cdn/banner/fb_trennwaende.jpg",
		"geo": {
			"@type": "GeoCoordinates",
			"latitude": "50.55973",
			"longitude": "8.48526"
		},
		"openingHoursSpecification": [
		  {
			"@type": "OpeningHoursSpecification",
			"dayOfWeek": [
			  "Monday",
			  "Tuesday",
			  "Wednesday",
			  "Thursday"
			],
			"opens": "07:00",
			"closes": "15:45"
		  },
		  {
			"@type": "OpeningHoursSpecification",
			"dayOfWeek": [
			  "Friday"
			],
			"opens": "07:00",
			"closes": "13:15"
		  }
		],
      	"makesOffer": {
        	"@type": "Offer",
        	"itemOffered": [
			{
        		"@type": "Product",
        		"name": "WC-Trennwand System Rink NA 13",
				"image": "https://s3.eu-central-1.amazonaws.com/rink.cdn/trennwaende/wc_trennwand_na_13_kinopolis_giessen.jpg"
			},
			{
        		"@type": "Product",
        		"name": "WC-Trennwand System Rink N 25",
				"image": "https://s3.eu-central-1.amazonaws.com/rink.cdn/trennwaende/wc_trennwand_n_25_stadtvilla_herborn.jpg"
			},
			{
        		"@type": "Product",
        		"name": "WC-Trennwand System Rink N 40",
				"image": "https://s3.eu-central-1.amazonaws.com/rink.cdn/trennwaende/wc_trennwand_n_40_cafe_geissner_giessen.jpg"
			},
			{
        		"@type": "Product",
        		"name": "WC-Trennwand System Rink NA 13 / N 25 Kita",
				"image": "https://s3.eu-central-1.amazonaws.com/rink.cdn/trennwaende/wc_trennwand_na_13_kita_alte_sattelfabrik_bad_homburg.jpg"
			}
			]
      	}
    }
    </script>

Stimmt das soweit alles? Und kann ich irgendwie noch den Typ "WebPage" unterbringen?