schemaorg-coda :: Example

eg-0413

From v29.4

Microdata

<!-- Product: Qualitative Value (multiple) -->
<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">Interfaces</span>:
      <span itemprop="value">USB</span>,
      <span itemprop="value">Ethernet</span>
  </div>
</div>

Pre-Markup

<!-- Product: Qualitative Value (multiple) -->
<div>
  <img src="camera123.jpg" alt="" />
  <span>Digital Camera 123</span>
  <div>
      <span>Interfaces</span>:
      <span>USB</span>,
      <span>Ethernet</span>
  </div>
</div>