对于商务中心、联合办公空间和服务式办公室,我应该使用哪种 Schema.org LocalBusiness 类型?

Which Schema.org LocalBusiness type should I use for Business Centers, Coworking spaces and Serviced Offices?

我希望在一个列出意大利商务中心、联合办公空间的网站上实现 Schema.org。

由于我对所有这些结构化数据都比较陌生,我不确定我是否只需要使用通用 LocalBusiness 或者是否有更具体的类型我可以使用。

我看到有 LodgingBusiness, InternetCafe and SelfStorage,但是 none 这个适合。

此外,由于它们 "sell"、"offer"、"rent" 办公空间和其他服务,我不确定是否也应该使用 Product 数据。

你能给我指出正确的方向吗?

好吧,让我们看看你有什么。根据 schema.org:

  • LodgingBusiness 被定义为 "A lodging business, such as a motel, hotel, or inn." 由于您的公司 center/coworking space 不出租床铺,这是不对的。
  • InternetCafe 不对,不是基于模式分类提供的数据,而是因为您没有同时为少量客户提供短期互联网访问.
  • SelfStorage 是不对的,因为您实际上有客户在他们的工作日(或夜间,对于那些疯狂的游戏开发人员或夜班人员)占用建筑物。自助仓储设施用于出租仓储space,一般无人居住(unless you have no choice)。
  • 即使 EmploymentAgency 也不太符合您的需求,但我不得不说它非常接近。

None 这些都非常适合您正在尝试做的事情;我认为最好的选择就是坚持 LocalBusiness.

您可以将您的业务包装到一个服务中,然后给它一个 use ServiceType,因为您可以自由地在其中编写您想要的内容。 这是 JSON

中的示例
{
"@context": "http://schema.org/",
"@type": "Service",
"serviceType": "Shared Office Space",
"provider": {
"@type": "LocalBusiness",
"name": "My Business center"
},