schemaorg-coda :: Example

eg-0411

From v29.4

Microdata

<!-- Product: Boolean Value -->
<div itemscope itemtype="https://schema.org/Product">
  <img itemprop="image" src="camera123.jpg" alt="" />
  <span itemprop="name">Digital Camera 123</span>
  <div itemprop="additionalProperty" itemscope itemtype="https://schema.org/PropertyValue">
      <span itemprop="name">USB interface</span>:
      <meta itemprop="value" content="True">Yes
  </div>
</div>

Pre-Markup

<!-- Product: Boolean Value -->
<div>
  <img src="camera123.jpg" alt="" />
  <span>Digital Camera 123</span>
  <div>
      <span>USB interface</span>: Yes
  </div>
</div>