schemaorg-coda :: Example

eg-0400

From v29.4

JSON-LD

{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@id": "#author",
      "@type": "Person",
      "birthDate": "1892",
      "deathDate": "1973",
      "name": "Tolkien, J. R. R. (John Ronald Reuel)",
      "sameAs": "http://viaf.org/viaf/95218067"
    },
    {
      "@id": "#trilogy",
      "@type": "Book",
      "about": "http://id.worldcat.org/fast/1020337",
      "hasPart": [
        {
          "@id": "#book3",
          "@type": [
            "Book",
            "PublicationVolume"
          ],
          "name": "The Return of the King",
          "about": "http://id.worldcat.org/fast/1020337",
          "isPartOf": "#trilogy",
          "inLanguage": "en",
          "volumeNumber": "3",
          "author": "#author"
        },
        {
          "@id": "#book2",
          "@type": [
              "Book",
              "PublicationVolume"
          ],
          "name": "The Two Towers",
          "about": "http://id.worldcat.org/fast/1020337",
          "isPartOf": "#trilogy",
          "inLanguage": "en",
          "volumeNumber": "2",
          "author": "#author"
        },
        {
          "@id": "#book1",
          "@type": [
            "Book",
            "PublicationVolume"
          ],
          "name": "The Fellowship of the Ring",
          "about": "http://id.worldcat.org/fast/1020337",
          "isPartOf": "#trilogy",
          "inLanguage": "en",
          "volumeNumber": "1",
          "author": "#author"
        }
      ],
      "name": "Lord of the Rings",
      "inLanguage": "en",
      "genre": "fictional",
      "author": "#author"
    }
  ]
}

RDFa

<!-- A trilogy of books with numbered volumes. -->
<div vocab="https://schema.org/">
  <p typeof="Book" resource="#trilogy">
    <link property="about" href="http://id.worldcat.org/fast/1020337">
    The <strong property="name">Lord of the Rings</strong> is an
    <span property="inLanguage" content="en">English-language</span>
    <span property="genre">fictional</span> trilogy by
    <span property="author" typeof="Person" resource="#author">
      <link property="sameAs" href="http://viaf.org/viaf/95218067">
      <span property="name" content="Tolkien, J. R. R. (John Ronald Reuel)">J. R. R. Tolkien</span>
      (<span property="birthDate">1892</span>-<span property="deathDate">1973</span>).
    </span>
    <link property="hasPart" href="#book1">
    <link property="hasPart" href="#book2">
    <link property="hasPart" href="#book3">
  </p>
  <p>
    The books in the trilogy are:
  </p>
  <ul>
    <li typeof="Book PublicationVolume" resource="#book1">
      Vol. <span property="volumeNumber">1</span>:
      <link property="about" href="http://id.worldcat.org/fast/1020337">
      <link property="isPartOf" href="#trilogy">
      <link property="author" href="#author">
      <meta property="inLanguage" content="en">
      <span property="name">The Fellowship of the Ring</span>
    </li>
    <li typeof="Book PublicationVolume" resource="#book2">
      Vol. <span property="volumeNumber">2</span>:
      <link property="about" href="http://id.worldcat.org/fast/1020337">
      <link property="isPartOf" href="#trilogy">
      <link property="author" href="#author">
      <meta property="inLanguage" content="en">
      <span property="name">The Two Towers</span>
    </li>
    <li typeof="Book PublicationVolume" resource="#book3">
      Vol. <span property="volumeNumber">3</span>:
      <link property="about" href="http://id.worldcat.org/fast/1020337">
      <link property="isPartOf" href="#trilogy">
      <link property="author" href="#author">
      <meta property="inLanguage" content="en">
      <span property="name">The Return of the King</span>
    </li>
  </ul>
</div>

Microdata

<!-- A trilogy of books with numbered volumes. -->
<div>
  <p itemscope itemtype="https://schema.org/Book" itemid="#trilogy">
    <link itemprop="about" href="http://id.worldcat.org/fast/1020337">
    The <strong itemprop="name">Lord of the Rings</strong> is an
    <meta itemprop="inLanguage" content="en"/>English-language
    <span itemprop="genre">fictional</span> trilogy by
    <span itemprop="author" itemscope itemtype="https://schema.org/Person" itemid="#author">
      <link itemprop="sameAs" href="http://viaf.org/viaf/95218067">
      <meta itemprop="name" content="Tolkien, J. R. R. (John Ronald Reuel)"/>J. R. R. Tolkien
     (<span itemprop="birthDate">1892</span>-<span itemprop="deathDate">1973</span>).
    </span>
    <link itemprop="hasPart" href="#book1">
    <link itemprop="hasPart" href="#book2">
    <link itemprop="hasPart" href="#book3">
  </p>
  <p>
    The books in the trilogy are:
  </p>
  <ul>
    <li itemscope itemtype="https://schema.org/Book https://schema.org/PublicationVolume" itemid="#book1">
      Vol. <span itemprop="volumeNumber">1</span>:
      <link itemprop="about" href="http://id.worldcat.org/fast/1020337">
      <link itemprop="isPartOf" href="#trilogy">
      <link itemprop="author" href="#author">
      <meta itemprop="inLanguage" content="en">
      <span itemprop="name">The Fellowship of the Ring</span>
    </li>
    <li itemscope itemtype="https://schema.org/Book https://schema.org/PublicationVolume" itemid="#book2">
      Vol. <span itemprop="volumeNumber">2</span>:
      <link itemprop="about" href="http://id.worldcat.org/fast/1020337">
      <link itemprop="isPartOf" href="#trilogy">
      <link itemprop="author" href="#author">
      <meta itemprop="inLanguage" content="en">
      <span itemprop="name">The Two Towers</span>
    </li>
    <li itemscope itemtype="https://schema.org/Book https://schema.org/PublicationVolume" itemid="#book3">
      Vol. <span itemprop="volumeNumber">3</span>:
      <link itemprop="about" href="http://id.worldcat.org/fast/1020337">
      <link itemprop="isPartOf" href="#trilogy">
      <link itemprop="author" href="#author">
      <meta itemprop="inLanguage" content="en">
      <span itemprop="name">The Return of the King</span>
    </li>
  </ul>
</div>

Pre-Markup

<!-- A trilogy of books with numbered volumes. -->
<div>
  <p>
    The <strong>Lord of the Rings</strong> is an English-language fictional trilogy by J. R. R. Tolkien (1892-1973).
  </p>
  <p>
    The books in the trilogy are:
  </p>
  <ul>
    <li>Vol. 1: The Fellowship of the Ring</li>
    <li>Vol. 2: The Two Towers</li>
    <li>Vol. 3: The Return of the King</li>
  </ul>
</div>