如何指定接受 itemtype 服务的组织类型 属性?

How to specify property of type Organization which accepts itemtype Service?

google 结构化数据测试工具无法将提供程序识别为组织类型的对象。 这是示例:

<body itemscope itemtype="https://schema.org/Organization">
  <div itemprop="provider" itemscope itemtype="https://schema.org/Service">
    <meta itemprop="serviceType" content="Front end" />
      <div class="row" itemprop="hasOfferCatalog" itemscope itemtype="https://schema.org/OfferCatalog">
        //The service itemlists' offered
      </div>
  </div>
</body>

有没有其他方法可以指定服务。

provider 是 Service 中的 属性,可以设置为 Organization。你得到的是相反的。

你可以交换东西:

<body itemscope itemtype="https://schema.org/Service">
  <meta itemprop="serviceType" content="Front end" />
  <div itemprop="provider" itemscope itemtype="https://schema.org/Organization"></div>
  <div class="row" itemprop="hasOfferCatalog" itemscope itemtype="https://schema.org/OfferCatalog">
      //The service itemlistsoffered' 
  </div>
</body>