<object-id> Object Identifier

Unique identifier (such as a DOI or URI) for a component within an article (for example, for a figure or a table).

Usage/Remarks

The <object-id> element holds an external identifier, typically assigned to an object such as a table by a publisher. The contents of this element should not be confused with the @id attribute, which holds an internal document identifier that can be used by software to perform a simple link inside the document. Such an identifier may be created by a publisher, archive, database host, etc., and there is no JATS requirement that these identifiers be unique. An element, rather than an attribute, was chosen to hold these DOIs and other identifiers so that multiple identifiers could be described.

Attribute Best Practice

Type of Identifier

While the values of the @object-id-type attribute are unconstrained, Best Practice is to use it to indicate the type of the external identifier, such as a publisher’s identifier, a DOI, a PMID, an aggregator’s or archive’s identifier, the identifier assigned by an indexing or hosting service, or similar.

Authority for Identifier

The attribute @assigning-authority should name the organization or system that assigned the identifier or administers the identifier (such as Crossref, OCLC, GenBank, Figshare).
Recording a DOI — Publication Identifier versus an Object Identifier
This tag set includes two elements which may be used to record a DOI as an identifier:
  • The <pub-id> element is used inside a citation (and similar elements such as <product>) to provide an identifier such as a DOI for a cited publication.
  • The <object-id> (used on many elements within the document as well as inside citations) is used to identify parts of an article. For example, a particular table, figure, ref-list, or table in the narrative text may be given an <object-id> such as a DOI so that it can be referenced. Similarly, an <object-id> inside a citation is the identifier of the citation, so that it can be referenced; it is not an identifier for the cited object.
Consequently, a bibliographic reference (<element-citation> or <mixed-citation>) could contain both the <object-id> element (with the DOI for that citation) and the <pub-id> element (with the DOI for the article being referenced in the citation).
Attributes

Base Attributes

Models and Context
May be contained in
Description
Text, numbers, or special characters
Content Model
<!ELEMENT  object-id    (#PCDATA)                                    >
Tagged Samples
Media object
...
<media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait" 
   position="anchor" specific-use="original-format" 
   xlink:href="video1-orig.av1">
 <object-id pub-id-type="doi"
   specific-use="metadata">10.1063/1.4807071.1</object-id>
</media>
...
...
<fig id="f1" orientation="portrait" position="float">
 <label>FIG. 1.</label>
 <caption>
  <p>(a) Schematic of the working principles of HFM, (b) a typical application
   scheme for an electric bias in HFM, (c) regulation the conformations and
   dynamics (trapping, concentration, and sudden stretching) of λ-DNA molecules
   in HFM, and (d) schematic of the trapping location regulation (enhanced online).
   [URL: <ext-link ext-link-type="uri" xlink:href="http://dx.doi.org/10.1063/1.4762852.1">
   http://dx.doi.org/10.1063/1.4762852.1</ext-link>]
   <media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait"
     position="anchor" specific-use="original-format" 
     xlink:href="v1-video1-orig.avi">
    <object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4762852.1</object-id>
   </media>
  </p>
 </caption>
 <graphic orientation="portrait" position="float" xlink:href="f1"/>
 <graphic id="f1a" orientation="portrait" position="float"
    xlink:href="dummy1.png"/>
 <graphic id="f1b" orientation="portrait" position="float"
    xlink:href="dummy2.png"/>
 <graphic id="f1c" orientation="portrait" position="float"
    xlink:href="dummy3.png"/>
 <graphic id="f1d" orientation="portrait" position="float"
    xlink:href="dummy4.png"/>
</fig>
...
DOIs in citations
<article dtd-version="1.3">
 <front>
  ...
  <article-meta> 
   <article-id pub-id-type="doi">MyPub.20070215.03154</article-id>
   ...
  </article-meta> 
 </front>
 <body>...</body>
 <back>
  <ref-list>
   ...
   <ref id="B6">
    <label>6</label> 
    <element-citation> 
     <object-id pub-id-type="doi">
      MyPub.20070215.03154.s433</object-id>
     ...
    </element-citation> 
   </ref> 
   <ref id="B7">
    <label>7</label> 
    <element-citation> 
     <object-id pub-id-type="doi">
      MyPub.20070215.03154.s434</object-id> 
     <person-group person-group-type="author"> 
      <name><surname>Brook</surname> 
       <given-names>I.</given-names></name>
     </person-group>
     <article-title>Infant Botulism</article-title> 
     <source>J Perinatol.</source>
     <year iso-8601-date="2007">2007</year> 
     <volume>27</volume>
     <issue>3</issue>
     <fpage>175</fpage>
     <lpage>180</lpage> 
     <pub-id pub-id-type="pmid">17314986</pub-id> 
     <pub-id pub-id-type="doi">10.1038/sj.jp.7211651</pub-id> 
    </element-citation> 
   </ref> 
   <ref id="B8">
    <label>8</label> 
    <element-citation> 
     <object-id pub-id-type="doi">
      MyPub.20070215.03154.s435</object-id>
     ...
    </element-citation> 
   </ref> 
   <ref id="B9">
    <label>9</label> 
    <element-citation> 
     <object-id pub-id-type="doi">
      MyPub.20070215.03154.s436</object-id>
     ...
    </element-citation> 
   </ref> 
  </ref-list>
 </back>
</article>