schemaorg-coda :: Example

eg-0308

From v29.4

JSON-LD

{
   "@context": "https://schema.org/",
   "@type": "PodcastSeason",
   "url": "https://serialpodcast.org/season-one",
   "name": "Serial: Season 1",
   "seasonNumber": 1,
   "numberOfEpisodes": 12,
   "partOfSeries": {
     "@type": "PodcastSeries",
     "name": "Serial",
     "url": "http://serialpodcast.org/"
   }
}

Microdata

<div itemscope itemtype="https://schema.org/PodcastSeason" class="season__entry">
  <h2>
    <a itemprop="url" href="https://serialpodcast.org/season-one">
      <span itemprop="name">Serial: Season 1</span>
    </a>
  </h2>
  <meta itemprop="seasonNumber" content="1" />
  <p itemprop="description">
    The debut season of Serial contains 12 episodes.
  </p>
</div>

Pre-Markup

<div class="season__entry">
  <h2>
    <a href="https://serialpodcast.org/season-one">
      <span>Serial: Season 1</span>
    </a>
  </h2>
  <p>
    The debut season of Serial contains 12 episodes.
  </p>
</div>