vocab-term-identifier

Vocabulary/Taxonomy Term Identifier

A unique identifier within a specific vocabulary for the term to which this attribute is attached, such as (but not limited to) an item number, a URI, a DOI, etc.

Remarks

Vocabulary Attributes: Four attributes are used in this Tag Set to identify a term from a controlled or an uncontrolled vocabulary:
vocab
Name of the controlled or uncontrolled vocabulary, taxonomy, ontology, index, database, or similar that is the source of the term. For example, for a subject term, a value might be an IPC Code (“ipc”) or MESH heading (“mesh”). For an uncontrolled term, the value might be an area of study such as “medical-devices” or merely the word “uncontrolled”.
vocab-identifier
Unique identifier of the vocabulary, such as (but not limited to) a URI or DOI. For example, for Dublin Core (DCC), the identifier may be http://dublincore.org/documents/2012/06/14/dces/. For CRediT, the identifier may be https://dictionary.casrai.org/Contributor_Roles.
vocab-term
The content of the element is the display version of the vocabulary or taxonomic term. The @vocab-term attribute holds the canonical version of the same term, as it appears in the vocabulary. For example, if the attribute value is “digitized-vor”, the element might contain the display text “Digitized Version of Record”.
vocab-term-identifier
Unique identifier of the term within a specific vocabulary, such as (but not limited to) an item number, a URI, DOI, etc.

Used on these Elements:

ValueMeaning
Text, numbers, or special charactersAn identifier of the term within a specific vocabulary, such as (but not limited to) an item number, a URI, DOI, etc.
Restriction@vocab-term-identifier is an optional attribute; there is no default.

Example 1

Vocabulary is a CRediT taxonomy term:
...
<contrib-group>
<contrib>
<string-name><given-names>Barbara</given-names> <surname>Johnston</surname></string-name>
<role vocab="CRediT" 
vocab-identifier="http://dictionary.casrai.org/Contributor_Roles"
vocab-term="Conceptualization" 
vocab-term-identifier="http://dictionary.casrai.org/Contributor_Roles/Conceptualization" 
degree-contribution="lead">study designer</role>
</contrib>
<contrib>
<string-name><given-names>Brooke</given-names> <surname>Jackson</surname></string-name>
<role vocab="CRediT" 
vocab-identifier="http://dictionary.casrai.org/Contributor_Roles"
vocab-term="Writing &#8212; Original Draft"
vocab-term-identifier="http://dictionary.casrai.org/Contributor_Roles/Writing_%E2%80%93_original_draft" 
degree-contribution="lead">writer</role>
</contrib>
</contrib-group>
...

Example 2

Special characters in CRediT attribute values need to be given as Unicode character references. In narrative text, Unicode character references, general entities, or characters may be used.
...
<contrib-group>
<contrib>
<string-name><given-names>Anne</given-names> <surname>Berns</surname></string-name>
<role vocab="CRediT" 
vocab-identifier="http://dictionary.casrai.org/Contributor_Roles"
vocab-term="Writing &#8212; Original Draft"
vocab-term-identifier="http://dictionary.casrai.org/Contributor_Roles/Writing_%E2%80%93_original_draft" 
degree-contribution="lead">Writing &ndash; Original Draft</role>
</contrib>
</contrib-group>
...

Example 3

Two vocabularies in one keyword group:
...
<kwd-group kwd-group-type="library-classifications">
  <compound-kwd vocab="LOC" 
      vocab-term="Diseases of the respiratory system"
      vocab-term-identifier="RC705-779">
    <compound-kwd-part>RC705-779</compound-kwd-part>
    <compound-kwd-part>Diseases of the respiratory system</compound-kwd-part>
  </compound-kwd>

  <compound-kwd vocab="Dewey Decimal" 
      vocab-term="Diseases of the respiratory system"
      vocab-term-identifier="616.3">
    <compound-kwd-part>616.3</compound-kwd-part>
    <compound-kwd-part>Diseases of the respiratory system</compound-kwd-part>
  </compound-kwd>
</kwd-group>
...

Example 4

Keywords with vocabulary and vocabulary-term identifiers:
...
<kwd-group kwd-group-type="physh" vocab="PhySH" vocab-identifier="https://physh.org/" xml:lang="en">
 <nested-kwd>
   <kwd content-type="facet" 
     vocab="PhySH"  vocab-identifier="https://physh.org/" 
     vocab-term-identifier=
     "https://physh.aps.org/browse?facetIds=Research%2520Areas"
   >Research Areas</kwd>
   <nested-kwd>
     <kwd content-type="concept" 
       vocab="PhySH"  vocab-identifier="https://physh.org/"
       vocab-term-identifier=
       "https://doi.org/10.29172/ba7ccb8ed7eb4e6f9c1eb622f5b4e242"
     >Atomic &amp; molecular processes in external fields</kwd>
     <nested-kwd>
       <kwd content-type="concept" 
         vocab="PhySH"  vocab-identifier="https://physh.org/"
         vocab-term-identifier=
           "https://doi.org/10.29172/da893accf204480b8a7e386479c50687"
       >Coherent control</kwd>
     </nested-kwd>
   </nested-kwd>
 </nested-kwd>
 <nested-kwd>
   <kwd content-type="facet" 
     vocab="PhySH"  vocab-identifier="https://physh.org/"
     vocab-term-identifier=
       "https://physh.aps.org/browse?facetIds=Physical%2520Systems"
   >Physical Systems</kwd>
   <nested-kwd>
     <kwd content-type="concept" 
       vocab="PhySH"  vocab-identifier="https://physh.org/"
       vocab-term-identifier=
        "https://doi.org/10.29172/bd252d88a60848979416daf84dee7f6b"
     >Atomic Systems</kwd>
     <nested-kwd>
       <kwd content-type="concept" 
         vocab="PhySH"  vocab-identifier="https://physh.org/"
         vocab-term-identifier=
          "https://doi.org/10.29172/42e66168abfd4328aa9df6fc3a077f75"
       >Molecules</kwd>
     </nested-kwd>
   </nested-kwd>
 </nested-kwd>
</kwd-group>
...