Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

<relatedItem> is a container element for subelements describing a related resource. Use attributes to mark the type of relationship between the main resource described in the MODS metadata and the related resource. The DAMS currently allows to explicitly mark relationships between series and parts of a series, and parent/child relationships (e.g. multi-part monographs). For other kinds of relationship between a resource and related resources, do not add a 'type' attribute.

Attributes


Attribute name

Details

XPath syntax examples

type

value:

  1. (no type attribute)
  2. host
  3. series

relatedItem[@type="host" and @displayLabel="Parent work"]

relatedItem[@type="series"]

displayLabel

value:

  1. (no displayLabel attribute)
  2. Parent work
  3. (no displayLabel attribute)

For DAMS metadata about Related Resource, the attribute value for displayLabel depends on the attribute value for type.

relatedItem[@type="host" and @displayLabel="Parent work"]

relatedItem[@type="series"]

Subelements

For information about a Related Resource, the following subelements of <relatedItem> are used in the DAMS:

  • titleInfo
  • location
  • identifier

Subelement <relatedItem><titleInfo>

Guidelines for use

<titleInfo> is a container element that contains subelements related to title information.

Attributes

Attribute name

Details

XPath syntax examples

lang

values:

Enter ISO-639-2 language code (3 letters).

relatedItem[@type="host" and @displayLabel="Parent work"]/titleInfo[@lang="eng"]

relatedItem[@type="series"]/titleInfo[@lang="eng"]

relatedItem/titleInfo[@lang="eng"]

type

values:

  • (empty/none)
  • translated
  • alternative
  • uniform

relatedItem[@type="host" and @displayLabel="Parent work"]/titleInfo

relatedItem[@type="series"]/titleInfo[@type="alternative" and @displayLabel="Also known as"]

relatedItem/titleInfo[@type="uniform" and @displayLabel="Uniform/preferred title"]

displayLabel

Corresponds to the value for type:

  • when type="alternative", use displayLabel="Also known as"
  • when type="uniform", use displayLabel="Uniform/preferred title"
  • otherwise, do not add a displayLabel attribute

relatedItem[@type="host" and @displayLabel="Parent work"]/titleInfo[@type="alternative" and @displayLabel="Also known as"]

relatedItem/titleInfo[@type="uniform" and @displayLabel="Uniform/preferred title"]

relatedItem[@type="series"]/titleInfo

authority

values:

  • (empty/none)
  • naf
  • viaf

When type="uniform", specify which authority was consulted. Options for searching uniform/preferred work titles are:

relatedItem/titleInfo[@type="uniform" and @displayLabel="Uniform/preferred title" and @authority="viaf" and authorityURI="http://viaf.org/viaf/data"]

authorityURIvalues:

relatedItem/titleInfo[@type="uniform" and @displayLabel="Uniform/preferred title" and @authority="naf" and authorityURI="http://id.loc.gov/authorities/names"]

Subelements

For information about a Source Collection, the following subelement of <titleInfo> is used in the DAMS:

  • title

Subelement <relatedItem><titleInfo><title>

Guidelines for use

Title of a parent work, a series that the asset is a part of, or other general related resources that are not otherwise captured by information about Digital Collection or Source Collection.

Attributes

No attributes for <title> are currently implemented in the DAMS.

Subelements

No subelements for <title> are currently implemented in the DAMS.

Subelement <relatedItem><location>

Guidelines for use

<location> is a container element; specific data is recorded in the subelements.

Attributes

No attributes for <location> are currently implemented in the DAMS.

Subelements

For information about a Related Resource, the following subelement of <location> is used in the DAMS:

  • url

Subelement <relatedItem><location><url>

Guidelines for use

<url> is for an electronic location from which a resource is available. Enter the URL of a a parent work, a series that the asset is a part of, or other general related resources that are not otherwise captured by information about Digital Collection or Source Collection.

Attributes

Attribute name

Details

XPath syntax examples

displayLabel

value:

  • Related resource URL

relatedItem/location/url[@displayLabel="Related resource URL"]

relatedItem[@type="series"]/location/url[@displayLabel="Related resource URL"]

relatedItem[@type="host" and @displayLabel="Parent work"]/location/url[@displayLabel="Related resource URL"]

Subelements

No subelements for <url>.

Subelement <relatedItem><identifier>

Guidelines for use

Enter identifiers for a Related Resource.

Attributes

Attribute name

Details

XPath syntax examples

type

values:

  • utldamsURI
  • utldamsPID
  • uri
  • pid
  • local
  • oclcSource
  • oclcSurrogate

relatedItem[@type="host" and @displayLabel="Parent work"]/identifier[@type="uri"]

relatedItem[@type="series"]/identifier[@type="pid"]

relatedItem/identifier[@type="local"]

relatedItem[@type="host" and @displayLabel="Parent work"]/identifier[@type="utldamsURI"]

relatedItem[@type="series"]/identifier[@type="utldamsPID"]

relatedItem/identifier[@type="oclcSource"]

relatedItem/identifier[@type="oclcSurrogate"]

Subelements

No subelements for <identifier>.

XML Examples

Code Block
languagexml
collapsetrue
<relatedItem type="host" "displayLabel="Parent work">
	<titleInfo type="uniform" lang="eng" authority="naf" authorityURI="http://id.loc.gov/authorities/names">
		<title>Uniform Parent Work Title</title>
	</titleInfo>
	<identifier type="oclcSource>OCLCnumber</identifier>
</relatedItem>

<relatedItem type="series">
	<titleInfo type="translated" lang="eng">
		<title>Translated Series Title</title>
	</titleInfo>
	<identifier type="utldamsPID">utlarch:67c766da-7364-49f8-82a5-443b13f8bd07</identifier>
	<identifier type="utldamsURI">https://dams.lib.utexas.edu/islandora/object/utlarch%3A67c766da-7364-49f8-82a5-443b13f8bd07</identifier>
	<location>
		<url displayLabel="Related resource URL">http://relatedresourceurl.edu</url>
	</location>
</relatedItem>

Mappings

Dublin Core

...