作为 BlogPosting 一部分的 image/logo 的微数据错误

Errors in Microdata for image/logo as part of a BlogPosting

我在使用 Google 的结构化数据测试工具获取发布者徽标和博客 post 图像以进行验证时遇到问题。

我目前拥有的一些示例标记是:

 <article class="post" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
     <div class="preview">
         <h2 itemprop="mainEntityOfPage headline"><a href="/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1">Improving the Patient Experience through the Revenue Cycle Part 1</a></h2>
         <div class="meta">
         <span itemprop="datePublished" class="published-date">Friday, February 19, 2016</span>
         <span class="sep">|</span>
         <span itemprop="author" class="author"><a title="Posts by Laurie Shoaf" href="/blog/?author=Laurie+Shoaf">Laurie Shoaf</a></span>
         <span class="sep">|</span>
         <span class="category"><a title="Posts in Revenue Cycle Management" href="/blog/?category=Revenue+Cycle+Management">Revenue Cycle Management</a></span>
         <span class="sep">|</span>
         <span class="comments"><a title="Improving the Patient Experience through the Revenue Cycle Part 1 Comments" href="/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1#comments">Comments<span class="hide" itemprop="discussionUrl">/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1#comments</span></a></span>
         </div>
         <p itemprop="description" class="snippet">This three part series will focus on strategies to augment revenue cycle operations in order to improve the patient experience. In the coming weeks we will share methods designed to enhance patient communications and ideas for maximizing performance when using an early-out or extended business offic...</p>
         <a itemprop="url" class="btn blue" href="/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1">Continue Reading &raquo;</a>
         <span class="hide" itemscope="" itemprop="publisher" itemtype="http://schema.org/Organization"><span itemprop="name">CCi</span><img itemprop="logo" src="/media/cci-small.png" alt="CCi Logo" title="CCi | Power on the Inside" /></span>
         <span class="hide" itemprop="dateModified">2/19/2016</span>
         <img itemprop="image" src="/media/blog featured/blog-post.png" class="hide" alt="Blog Post Graphic" title="Improving the Patient Experience through the Revenue Cycle Part 1" />
     </div>
    </article>

我在测试端收到的错误是:

将这些属性嵌套在 "blogPost" 架构中以通过验证的正确方法是什么?

在这两种情况下,Google 想要查看 ImageObject 项目(用于显示他们的 Article Rich Snippet)。

<div itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
  <!-- … -->
</div>

<div itemprop="image" itemscope itemtype="http://schema.org/ImageObject">
  <!-- … -->
</div>