Versions Compared

Key

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

...

Section
Column

Table of Contents

Table of Contents
maxLevel1
Column

Excerpt

The following sections present a description of all bibliographic metadata fields of the HBO Bibliographic Metadata application profile of MODS.

MODS in DIDL

The MODS records is placed inside a DIDL Resource element of a Component in an Item with semantic type set to "info:eu-repo/semantics/DescriptiveMetadata".

Code Block
xml
xml
titleExample

(...)
<didl:Item>

  <!-- Semantic Type -->
  <didl:Descriptor>
    <didl:Statement mimeType="application/xml">
      <rdf:type rdf:resource="info:eu-repo/semantics/DescriptiveMetadata"/>
    </didl:Statement>
  </didl:Descriptor>

  (...)


  <!-- Content -->
  <didl:Component>
    <didl:Resource mimeType="application/xml">
      (...) <!-- MODS goes here -->
    </didl:Resource>
  </didl:Component>

</didl:Item>
(...)


A MODS record starts with the mods root element. If not declared elsewhere in the XML document, the mods element MUST declare a namespace by setting the xmlns attribute of the mods element to http://www.loc.gov/mods/v3Image Added. We are using version 3.4. This SHOULD be made explicit by using the version attribute. Referencing the XML schema is optional

Code Block
xml
xml
titleExample

(...)
<didl:Resource mimeType="application/xml">

  <mods xmlns="http://www.loc.gov/mods/v3"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd"
      version="3.4">
    (...)
  </mods>

</didl:Resource>
(...)

1. Title, abstract, semantic type and language

...