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>
还有其他方法可以指定服务。
提供者是Service中的属性,可以将其设置为组织。你所拥有的是相反的。
您可以交换周围的东西:
<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>