<std-ident>
Standard Identification Block
The <std-ident> is a container element for the basic identification information concerning this standard, such as its originator, designation, part number (if applicable), and year of publication. This element contains sufficient information to build the standard designation for this document (<std-ref>) from its constituent parts.
Remarks
The child elements of <std-ident> identify the various pieces of the reference designation for this standard (for ISO-related standards, additional information may need to be obtained from <doc-ref> children). A precombined form of the reference designation is given in the <std-ref> element, which is a sibling (not a child) of <std-ident>.
When identifiers are simple, the reference designation can be constructed by putting together the pieces of <std-ident> in a prescribed way, but it is usually simpler to create a pre-combined form of the reference designation by hand than to try to make software understand all the rules for constructing such an identifier.
Model Description
The following, in order:
- <originator> Originator, zero or one
- <doc-type> Document Type, zero or one
- <doc-number> Document Number, zero or one
- <part-number> Part Number of a Multipart Document, zero or one
- <edition> Edition Statement, zero or one
- <version> Version Statement, Cited, zero or one
- <std-id-group> Standard ID Group, zero or more
- <isbn> ISBN, zero or more
- <issn> ISSN (in a citation), zero or more
- <issn-l> ISSN-L (Linking ISSN) (in a citation), zero or more
- <suppl-type> Supplement Type, zero or one
- <suppl-number> Supplement Number, zero or one
- <suppl-version> Supplement Version, zero or one
- <year> Year, zero or one
This element may be contained in:
Example 1
The <std-ident> for a single originator standard:
...
<iso-meta id="profile.int">
<title-wrap>...</title-wrap>
<doc-ident>...</doc-ident>
<std-ident>
<originator>ISO</originator>
<doc-type>is</doc-type>
<doc-number>2560</doc-number>
<part-number></part-number>
<edition>3</edition>
<version>...</version>
</std-ident>
<content-language>en</content-language>
...
</iso-meta>
...
Example 2
The <std-ident> for a co-produced standard:
...
<std-meta>
<title-wrap>
<main-title-wrap>
<main>Safety Code for Elevators and Escalators</main>
<subtitle>Includes Requirements for Elevators, Escalators, Dumbwaiters, Moving
Walks, Material Lifts, and Dumbwaiters With Automatic Transfer Devices</subtitle>
</main-title-wrap>
<full>Safety Code for Elevators and Escalators: Includes Requirements for
Elevators,Escalators, Dumbwaiters, Moving Walks, Material Lifts, and
Dumbwaiters With Automatic Transfer Devices</full>
</title-wrap>
<std-ident>
<std-id-group std-relationship-type="std-as-published">
<std-id std-id-type="dated">ASME A17.1-2013/CSA B44-13</std-id>
<std-id std-id-type="dated" std-id-link-type="doi">10.1115/ASME A17.1-2013/CSA B44-13</std-id>
</std-id-group>
<std-id-group std-relationship-type="std-as-published">
<std-id std-id-type="undated">ASME A17.1/CSA B44</std-id>
<std-id std-id-type="undated" std-id-link-type="doi">10.1115/ASME A17.1/CSA B44</std-id>
</std-id-group>
<std-id-group originator="ASME" std-relationship-type="std-series">
<std-id std-id-type="title">Elevators and Escalators</std-id>
<std-id std-id-type="short">A17</std-id>
<std-id std-id-type="short" std-id-link-type="doi">10.1115/ASME.A17</std-id>
</std-id-group>
<std-id-group originator="CSA" std-relationship-type="std-alt-as-published">
<std-id std-id-type="dated">CSA B44-13</std-id>
<std-id std-id-type="dated" std-id-link-type="doi">10.XYZ/CSA.B44-13</std-id>
</std-id-group>
<isbn originator="ASME" publication-format="print">978-0-7918-6857-7</isbn>
<isbn originator="CSA" publication-format="print">978-1-77139-312-6</isbn>
</std-ident>
...
</std-meta>
...