【发布时间】:2021-08-08 00:15:06
【问题描述】:
许多企业服务于多个城市。
这在https://schema.org/areaServed(JSON LD)中应该如何表达?
例如根据https://schema.org/Service:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Service",
"serviceType": "Weekly home cleaning",
"provider": {
"@type": "LocalBusiness",
"name": "ACME Home Cleaning"
},
"areaServed": {
"@type": "City",
"name": "New York"
},
... ?
</script>
应该是:
"areaServed": {
"@type": "City",
"name": "New York"
},
"areaServed": {
"@type": "City",
"name": "Buffalo"
},
"areaServed": {
"@type": "City",
"name": "Syracuse"
},
或者类似的东西:
"areaServed": {
"@type": "City",
"name": "New York",
"name": "Buffalo",
"name": "Syracuse"
},
还是别的什么?
【问题讨论】:
标签: schema.org json-ld structured-data