El Plugin KK Star Ratings ens permet que els usuaris voten la nostra web i crear resultats enriquits (Schema) amb aquestes puntuacions. Per defecte porta del tipus CreativeWorkSeries, però podem afegir-li un codi per a LocalBusiness amb puntuació, inserint aquest codi en la configuració del plugin, a la pestanya Rich Snippets.
{ "@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Nom Empresa",
"image": { "@type": "ImageObject", "url": "imatge logo", "width": 1078, "height": 1074 },
"telephone": "+34-666-999-666",
"url": "WEB",
"address": { "@type": "PostalAddress", "streetAddress": "Calle Falsa 123", "addressLocality": "Castalla", "postalCode": "03420", "addressRegion": "Diània", "addressCountry": "ES" },
"priceRange": "€",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "{score}",
"bestRating": "{best}",
"ratingCount": "{count}"
},
"openingHoursSpecification": [
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "10:00", "closes": "14:00" },
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "16:00", "closes": "20:00" }
],
"geo": { "@type": "GeoCoordinates", "latitude": "40.000", "longitude": "-4.021302" }
}
Amb horari 24 hores:
{ "@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Jordi Juan",
"image": { "@type": "ImageObject", "url": "https://logo/", "width": 512, "height": 512 },
"telephone": "+34-666-666-666",
"url": "https://www.web.com/",
"address": { "@type": "PostalAddress", "streetAddress": "Gatzarriñe,34", "addressLocality": "Castalla", "postalCode": "03420", "addressRegion": "Diània", "addressCountry": "ES" },
"priceRange": "€€-€€€",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "[score]",
"bestRating": "[best]",
"ratingCount": "[count]"
}, "openingHours": "Mo, Tu, We, Th, Fr, Sa, Su 01:00-23:59",
"geo": { "@type": "GeoCoordinates", "latitude": "43.0000", "longitude": "-2.0000" }
}
De tipus SHOP!
{ "@context": "https://schema.org",
"@type": ["Store", "Organization"],
"name": "Nom Web",
"description": "Descripcio.",
"image": { "@type": "ImageObject", "url": "imatge logo", "width": 1078, "height": 1074 },
"telephone": "+34-966-273-834",
"url": "URL A WEB",
"address": { "@type": "PostalAddress", "streetAddress": "Carrer FALS, 54", "addressLocality": "Petrer", "postalCode": "03610", "addressRegion": "Alicante", "addressCountry": "ES" },
"priceRange": "€-€€",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.6",
"bestRating": "5",
"ratingCount": "58"
},
"openingHoursSpecification": [
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "10:00", "closes": "13:30" },
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Saturday"], "opens": "10:00", "closes": "14:00" },
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "17:00", "closes": "20:30" }
],
"geo": { "@type": "GeoCoordinates", "latitude": "38.485022", "longitude": "-0.780233" },
"hasMap" : "https://goo.gl/maps/dE5NwP9hGrvSSv7u5"
}
Una resposta a “Schema LocalBusiness per a KK Star Ratings”
[…] Per a incloure en la pestanya “Rich Snippets” del KK Star Ratings. Així, en compte del tipus de Schema que porta el plugin per defecte, podem utilitzar el d’Organization. També pots utilitzar el de LocalBusiness. […]