web-dev-qa-db-ja.com

LocalBusinessのビジネスタイプを指定する方法(SDTTは「ガーデニング」タイプを認識しません)

JSON-LDでSchema.org LocalBusiness を実装しています。ビジネスはガーデニングです。

GoogleのSDTTで認識されない場合、ガーデニングにTYPEを指定するにはどうすればよいですか?

だから私はこれを使用します:

では、LocalBusinessのどこでビジネスTYPEを定義していますか?

2
Shraga

私は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>
1
Evgeniy