schemaorg-coda :: Example

eg-0307

From v29.4

JSON-LD

{
   "@context": "https://schema.org/",
   "@type": "PodcastEpisode",
   "url": "http://www.relay.fm/inquisitive/27",
   "name": "#27: Behind the App #1: History",
   "datePublished": "2015-02-18",
   "timeRequired": "PT37M",
   "description": "In the first episode of “Behind the App”, a special series of Inquisitive, we take a look at the beginnings of iOS app development, by focusing on the introduction of the iPhone and the App Store.",
   "associatedMedia": {
     "@type": "MediaObject",
     "contentUrl": "http://www.relay.fm/inquisitive/Inquisitive_027.mp3"
   },
   "partOfSeries": {
     "@type": "PodcastSeries",
     "name": "Inquisitive",
     "url": "http://www.relay.fm/inquisitive"
   }
}

Microdata

<div itemscope itemtype="https://schema.org/PodcastEpisode"  class="episode__entry">
  <h2>
    <a itemprop="url" href="http://www.relay.fm/inquisitive/27">
      <span itemprop="name">#27: Behind the App #1: History</span>
    </a>
  </h2>
  <small><time itemprop="datePublished" datetime="2015-02-18">February 18th, 2015</time></small>
  <small><time itemprop="timeRequired" datetime="PT37M">37 minutes</time></small>
  <p itemprop="description">
    In the first episode of “Behind the App”, a special series of
    Inquisitive, we take a look at the beginnings of iOS app development,
    by focusing on the introduction of the iPhone and the App Store.
  </p>
  <p itemprop="associatedMedia" itemscope itemtype="https://schema.org/MediaObject">
    Download:
    <a itemprop="contentUrl" href="http://.../Inquisitive_027.mp3">
      MP3 (<span itemprop="contentSize">25.75 MB</span>)
    </a>
  </p>
</div>

Pre-Markup

<div class="episode__entry">
  <h2>
    <a href="http://www.relay.fm/inquisitive/27">
      <span>#27: Behind the App #1: History</span>
    </a>
  </h2>
  <small>February 18th, 2015</small>
  <small>37 minutes</small>
  <p>
    In the first episode of “Behind the App”, a special series of
    Inquisitive, we take a look at the beginnings of iOS app development,
    by focusing on the introduction of the iPhone and the App Store.
  </p>
  <p>
    Download:
    <a href="http://.../Inquisitive_027.mp3">MP3 (25.75 MB)</a>
  </p>
</div>