schemaorg-coda :: Example

eg-0401

From v29.4

JSON-LD

{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@id": "#issue4",
      "@type": "PublicationIssue",
      "datePublished": "2006-10",
      "issueNumber": "4"
    },
    {
      "@id": "#volume50",
      "@type": "PublicationVolume",
      "volumeNumber": "50"
    },
    {
      "@id": "#periodical",
      "@type": "Periodical",
      "name": "Library Resources and Technical Services"
    },
    {
      "@id": "#article",
      "@type": "ScholarlyArticle",
      "author": "Carlyle, Allyson.",
      "isPartOf": [
        {
          "@id": "#periodical"
        },
        {
          "@id": "#volume50"
        },
        {
          "@id": "#issue4"
        }
      ],
      "name": "Understanding FRBR as a Conceptual Model: FRBR and the Bibliographic Universe",
      "pageEnd": "273",
      "pageStart": "264"
    }
  ]
}

RDFa

<!-- An article citation in MLA format, using a 'flat' approach that simplifies
  markup by not specifying an explicit relationship between the periodical,
  volume, and issue -->
<div vocab="https://schema.org/" typeof="ScholarlyArticle">
  <span property="author">Carlyle, Allyson.</span>
  &quot;<span property="name">Understanding FRBR as a Conceptual Model: FRBR
    and the Bibliographic Universe</span>&quot;
  <div property="isPartOf" typeof="Periodical">
    <em><span property="name">Library Resources and Technical Services</span></em>
  </div>
  <span property="isPartOf" typeof="PublicationVolume">
    v. <span property ="volumeNumber">50</span>
  </span>,
  <span property="isPartOf" typeof="PublicationIssue">
    no. <span property="issueNumber">4</span>
    (<time datetime="2006-10" property="datePublished">October 2006</time>):
  </span>
  <span property="pageStart">264</span>-<span property="pageEnd">273</span>
Print.</div>

Microdata

<!-- An article citation in MLA format, using a 'flat' approach that simplifies
  markup by not specifying an explicit relationship between the periodical,
  volume, and issue -->
<div itemscope itemtype="https://schema.org/ScholarlyArticle">
  <span itemprop="author">Carlyle, Allyson.</span>
  &quot;<span itemprop="name">Understanding FRBR as a Conceptual Model: FRBR
    and the Bibliographic Universe</span>&quot;
  <div itemprop="isPartOf" itemscope itemtype="https://schema.org/Periodical">
    <em><span itemprop="name">Library Resources and Technical Services</span></em>
  </div>
  <span itemprop="isPartOf" itemscope itemtype="https://schema.org/PublicationVolume">
    v. <span itemprop="volumeNumber">50</span>
  </span>,
  <span itemprop="isPartOf" itemscope itemtype="https://schema.org/PublicationIssue">
    no. <span itemprop="issueNumber">4</span>
    (<time datetime="2006-10" itemprop="datePublished">October 2006</time>):
  </span>
  <span itemprop="pageStart">264</span>-<span itemprop="pageEnd">273</span>
Print.</div>

Pre-Markup

<!-- An article citation in MLA format, using a 'flat' approach that simplifies
  markup by not specifying an explicit relationship between the periodical,
  volume, and issue -->
<div>
  Carlyle, Allyson. &quot;Understanding FRBR as a Conceptual Model: FRBR
    and the Bibliographic Universe.&quot;
  <em>Library Resources and Technical Services</em>,
  v. 50, no. 4 (October 2006): 264-273. Print.
</div>