<history>
History: Document History
Container element for dates related to the processing history of the document (for example,
received date, accepted date).
Remarks
Best Practice: The dates inside the <history> element are used to preserve events other than publication date(s) in the life cycle of the article. Publication dates are considered to be an important part of the article metadata and are tagged using the <pub-date> element inside the element <article-meta>. History dates include received date(s), accepted
date(s), reviewed date(s), revision date(s), and other dates that may be important to the publisher,
but are not a likely part of the metadata concerning the article that is used for searching, building a DOI, etc.
Content Model
<!ELEMENT history %history-model; >
Expanded Content Model
(date)+
This element may be contained in:
Example 1
In article metadata, an approval date:
...
<article-meta>
...
<contrib-group>
<contrib contrib-type="author">
<collab collab-type="committee">Technical Committee ISO/TC 108,
Subcommittee SC 2</collab>
</contrib>
</contrib-group>
...
<fpage seq="1">1</fpage>
<lpage>23</lpage>
<history>
<date date-type="approved" iso-8601-date="2012-06-01">
<day>01</day>
<month>06</month>
<year>2012</year>
</date>
</history>
...
</article-meta>
...
Example 2
In article metadata, several lifecycle dates:
...
<article-meta>
...
<pub-date publication-format="electronic" date-type="pub" iso-8601-date="1998-09-17">
<day>17</day>
<month>09</month>
<year>1998</year>
</pub-date>
<pub-date publication-format="print" date-type="pub" iso-8601-date="1998-11-09">
<day>09</day>
<month>11</month>
<year>1998</year>
</pub-date>
<volume>31</volume>
<issue>187</issue>
<fpage>483</fpage>
<lpage>501</lpage>
<history>
<date date-type="received" iso-8601-date="1998-01-05">
<day>05</day>
<month>01</month>
<year>1998</year>
</date>
<date date-type="rev-request" iso-8601-date="1998-03-14">
<day>14</day>
<month>03</month>
<year>1998</year>
</date>
<date date-type="rev-recd" iso-8601-date="1998-05-24">
<day>24</day>
<month>05</month>
<year>1998</year>
</date>
<date date-type="accepted" iso-8601-date="1998-06-06">
<day>06</day>
<month>06</month>
<year>1998</year>
</date>
</history>
...
</article-meta>
...