JSON-LDでSchema.org LocalBusiness
を実装しています。ビジネスはガーデニングです。
GoogleのSDTTで認識されない場合、ガーデニングにTYPEを指定するにはどうすればよいですか?
だから私はこれを使用します:
では、LocalBusiness
のどこでビジネスTYPEを定義していますか?
私はsameAs
を利用します:このように:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Service",
"serviceType": "Gardening",
"sameAs": "http://dbpedia.org/page/Gardening",
"provider": {
"@type": "LocalBusiness",
"name": "ACME Gardening Services"
},
"areaServed": {
"@type": "State",
"name": "Massachusetts"
},
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Gardening services",
"sameAs": "http://dbpedia.org/page/Gardening",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Garden Planting",
"sameAs": "http://dbpedia.org/resource/Garden_planting"
} },
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Garden maintanance",
"sameAs": "http://dbpedia.org/resource/Garden_maintenance"
}
}
]
}
}
</script>