<object-id>

Object Identifier (オブジェクト識別子)

記事内の構成要素 (例えば図や表) の一意な識別子 (DOI や URI など)。

備考

そのような識別子は、出版者またはアーカイブによって作成されてもよく、また識別子が一意である必要はありません。
設計上の注意点: DOI や他の識別子を記述する手段として、属性でなく、要素を選択することにより、複数の識別子が保存できるようにしました。
このタグセットには、識別子としての DOI を記述するために、<object-id><pub-id>の 2 種類の要素があります。<object-id> は、特定のセクション、図、表、などの記事の部分、あるいは記事の文献書誌リスト内のまたは特定の引用 (エンティティとして)、を識別するために使用されます。<pub-id> 要素は、引用文献内で引用された出版物を識別するために使用されます。 したがって、参照文献 (<element-citation> または <mixed-citation>) は、以下の例にあるように、<object-id> 要素 (その引用文献の DOI を含む) と <pub-id> 要素 (その引用文献を掲載しているジャーナルの DOI を含む) の両方を含むことができます。

属性

コンテンツ・モデル

<!ELEMENT  object-id    (#PCDATA)                                    >

記述方法

文字、数字または特殊文字

この要素は以下の要素内に含むことができます:

用例 1

メディア・オブジェクトに対して:
...
<media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait" 
position="anchor" specific-use="original-format" xlink:href="v1">
<object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4807071.1</object-id>
</media>
...

用例 2

文脈全体の中のメディア・オブジェクト例:
...
<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>]
<alternatives>
<media id="v1" mime-subtype="avi" mimetype="video" orientation="portrait"
position="anchor" specific-use="original-format" xlink:href="v1">
<object-id pub-id-type="doi" specific-use="metadata">10.1063/1.4762852.1</object-id>
</media>
<media mime-subtype="mpeg" mimetype="video" orientation="portrait"
position="anchor" specific-use="archival-format" xlink:href="v1"></media>
<media mime-subtype="x-flv" mimetype="video" orientation="portrait"
position="anchor" specific-use="online-format" xlink:href="v1"></media>
</alternatives>
</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>
...

用例 3

<object-id> 要素 (記事の DOI を持つ) と <pub-id> 要素 (記事が掲載されているジャーナルの DOI を持つ) を両方持つ引用文献書誌:

<article dtd-version="1.1">
<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>