: 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
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?
More posts by @Hamm4606531
1 Comments
Sorted by latest first Latest Oldest Best
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>
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.