WebSchemas/CitationPromotion

From W3C Wiki

Proposal to promote "citation" property to CreativeWork

Submitted by the Schema Bib Extend Group
Detail in Schema Bib Extend Wiki

Overview

The "citation" property is already defined in the MedicalScholarlyArticle Type, as "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. ". However, a citation can be found within any kind of document (and other kinds of works), so this property should be available on the CreativeWork Type.

Proposal

The promotion of the "citation" property to the CreativeWork Type.


Example

Citation of an article and a book within a document


HTML

<article itemscope itemtype="http://schema.org/ScholarlyArticle">
  <p>In each of the successively more derived clades Ornithodira, Dinosauria, and Saurischia, the primitive state was an increasingly long neck 
(<a href="http://dx.doi.org/10.2307/3889336" title="Basal archosaurs: phylogenetic relationships and functional implications" data-rid="ref-1">Sereno, 1991a</a>; 
<a href="http://books.google.co.uk/books?vid=ISBN9780520242098" title="The Dinosauria" data-rid="ref-2">Langer, 2004</a>).</p>

  <ul id="references">
    <li itemprop="citation" itemscope itemtype="http://schema.org/ScholarlyArticle" id="ref-1">
      <span itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span itemprop="familyName">Sereno</span> <span itemprop="givenName">PD</span>
      </span> 
      (<span itemprop="datePublished">1991</span>)
      <cite itemprop="name"><a itemprop="url" href="http://dx.doi.org/10.2307/3889336">Basal archosaurs: phylogenetic relationships and functional implications</a></cite>
      <span>
        <cite class="source">Society of Vertebrate Paleontology Memoir</cite> <span class="volume">2</span>:<span class="fpage">1</span>
      </span>
    </li>

    <li itemprop="citation" itemscope itemtype="http://schema.org/Book" id="ref-2">
      <span itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span itemprop="familyName">Langer</span> <span itemprop="givenName">MC</span>
      </span> 
      (<span itemprop="datePublished">2004</span>)
      <cite itemprop="name"><a itemprop="url" href="http://books.google.co.uk/books?vid=ISBN9780520242098">The Dinosauria</a></cite>
    </li>
  </ul>
</article>

Parsed microdata as JSON

From Live Microdata

{
  "items": [
    {
      "type": [
        "http://schema.org/ScholarlyArticle"
      ],
      "properties": {
        "citation": [
          {
            "type": [
              "http://schema.org/ScholarlyArticle"
            ],
            "properties": {
              "author": [
                {
                  "type": [
                    "http://schema.org/Person"
                  ],
                  "properties": {
                    "familyName": [
                      "Sereno"
                    ],
                    "givenName": [
                      "PD"
                    ]
                  }
                }
              ],
              "datePublished": [
                "1991"
              ],
              "name": [
                "Basal archosaurs: phylogenetic relationships and functional implications"
              ],
              "url": [
                "http://dx.doi.org/10.2307/3889336"
              ]
            }
          },
          {
            "type": [
              "http://schema.org/Book"
            ],
            "properties": {
              "author": [
                {
                  "type": [
                    "http://schema.org/Person"
                  ],
                  "properties": {
                    "familyName": [
                      "Langer"
                    ],
                    "givenName": [
                      "MC"
                    ]
                  }
                }
              ],
              "datePublished": [
                "2004"
              ],
              "name": [
                "The Dinosauria"
              ],
              "url": [
                "http://books.google.co.uk/books?vid=ISBN9780520242098"
              ]
            }
          }
        ]
      }
    }
  ]
}

Expressed Using Turtle

@prefix : <http://schema.org/> .

[] a :ScholarlyArticle;
  :citation
    [ a :Book;
        :author [ a :Person; :familyName "Langer"; :givenName "MC" ];
        :datePublished "2004";
        :name "The Dinosauria";
        :url <http://books.google.co.uk/books?vid=ISBN9780520242098> ],
    [ a :ScholarlyArticle;
        :author [ a :Person; :familyName "Sereno"; :givenName "PD" ];
        :datePublished "1991";
        :name "Basal archosaurs: phylogenetic relationships and functional implications";
        :url <http://dx.doi.org/10.2307/3889336> ] .

Example of an unstructured citation

<li itemprop="citation">Miyazaki N. 2002. Teeth. In: Perrin WF, Würsig B, Thewissen JGM, eds. Encyclopedia of marine mammals (1st ed.) San Diego: Academic Press. 1227-1232</li>

Example of an unstructured citation with known type

<li itemprop="citation" itemscope itemtype="http://schema.org/ScholarlyArticle">Udvarhelyi, I.S., Gatsonis, C.A., Epstein, A.M., Pashos, C.L., Newhouse, J.P. and McNeil, B.J. 
Acute Myocardial Infarction in the Medicare population: process of care and clinical outcomes. Journal of the American Medical Association, 1992; 18:2530-2536.</li>