Mobile app version of vmapp.org
Login or Join
Hamm4606531

: How to specify the business type of a LocalBusiness? (SDTT doesn't recognize a "Gardening" type) Implementing Schema.org LocalBusiness in JSON-LD. The business is for a Gardening. How can I specify

@Hamm4606531

Posted in: #GoogleRichSnippetsTool #SchemaOrg

Implementing Schema.org LocalBusiness in JSON-LD. The business is for a Gardening.

How can I specify the TYPE to Gardening if it is not recognized in Google’s SDTT?



So I use this:



So where in LocalBusiness do you define the business TYPE?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamm4606531

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

I would make use of sameAs: something like this way:

<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>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme