Versions Compared

Key

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

...

Section
Column
width50%

Table of contents

Table of Contents
Column
width50%
Wiki Markup


h1. Document information

| *Title:* \\
*Subject:* \\
*Moderator:* \\
*Version:* \\
*Date published:* \\
*Excerpt*:{excerpt} Write an excerpt here of max. 60 words {excerpt}\\
\\
(Optional information) \\
*Type:* \\
*Format:* \\
*Identifier:* \\
*Language:* \\
*Rights:* \\
*Tags:* {page-info:labels}
{contributors-summary}\\ |

Document History

Date

Version

Owner

Changelog

Image Modified PDF

 

 

 

 

 

Abstract

The abstract describes what the application profile is about. It should contain a problem definition, the standards described by the application profile and the goal of the application profile.

...

Note

When creating a draft, comments and proposal can be added that allow a dicussion. Please read the http://wiki.surffoundation.nl/display/standards/Wiki+guidelines

Result

Description

title

Field (NL)

Title

Field (EN)

Titel

Description (NL)

 

Description (EN)

 

Cardinality

 

Constraints

 

Value: Data type

LangString

Value: Data encoding

ISO/IEC 10646-1 | @RFC4646

Value: Example

Een Nederlandse titel.

Value: Remarks

[http://www.ietf.org/rfc/rfc4646.txt
]

Validation: Schematron rule

 

Xpath Default namespace

mods:

Xpath Serialisation

//mods/titleInfo[@xml:lang]/title

Usage: OAIS Package

SIP; AIP; DIP

Usage: Community

HBO-KB; NARCIS

Representations

Landing page

Field (NL)

 

URL human start page

 

Field (EN)

 

URL human start page

 

Description (NL)

 

Web-locatie van de informatiepagina (html) van de publicatie in de repository

 

Description (EN)

 

Cardinality

 

Constraints

 

Value: Data type

 

URI

 

Value: Data encoding

 

RFC3986

 

Value: Example

http://example.org/pageinrepository.html

Value: Remarks

http://www.ietf.org/rfc/rfc4646.txt

Validation: Schematron rule

 

Xpath Default namespace

didl:

Xpath Serialisation

 

//Item/Item[Descriptor/Statement/rdf:type/@rdf:resource='info:eu-repo/semantics/humanStartPage]/Component/Resource/@ref

 

Usage: OAIS Package

AIP; DIP

Usage: Community

HBO-KB; NARCIS

Object files

0. MODS in DIDL

...

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/v3. 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>
(...)

...

Code Block
xml
xml
titleExample

(...)
<titleInfo>
  <title>Main Title</title>
  <subTitle>Subtitle</title>
</titleInfo>
(...)

...

Code Block
xml
xml
titleExample

(...)
<abstract xml:lang="en">A short abstract.</abstract>
(...)

...

Code Block
xml
xml
titleExample

(...)
<genre>info:eu-repo/semantics/BachelorThesis</genre>
(...)

...

Code Block
xml
xml
titleExample

(...)
<language objectPart="summary">
  <languageTerm type="code" authority="rfc3066">eng</languageTerm>
</language>
<language objectPart="main">
  <languageTerm type="code" authority="rfc3066">nld</languageTerm>
  <languageTerm type="text" lang="nld">Nederlands</languageTerm>
  <languageTerm type="text" lang="eng">Dutch</languageTerm>
</language>
(...)

 

2. Names of Persons and Organisations

...

Code Block
xml
xml
titleExample

(...)
<name>
  <namePart>Name<namePart>
  <role>
    <roleTerm authority="marcrelator">term</roleTerm>
  </role>
  <affiliation>Term</affiliation>
</name>
(...)

...

Code Block
xml
xml
titleExample

(...)
<name type="personal">
  <namePart type="family">Vries, de<namePart>
  <namePart type="given">J. (Jan)<namePart>
  <role>
    <roleTerm authority="marcrelator">aut</roleTerm>
  </role>
  <affiliation>Lector</affiliation>
</name>
(...)

...

Code Block
xml
xml
titleExample

(...)
<name ID="nameID_1" type="corporate">
  <namePart>Hogeschool van Amsterdam. Media, Creatie en Informatie. Electronisch Uitgeven</namePart>
  <role>
    <roleTerm authority="marcrelator">pbl</roleTerm>
  </role>
</name>

(...)

<extension>
  <hbo:name xmlns:hbo="info:eu-repo/xmlns/hboMODSextension" ID="nameID_1" type="corporate">
    <hbo:namePart type="organisation">Hogeschool van Amsterdam </hbo:namePart>
    <hbo:namePart type="department">Media, Creatie en Informatie</hbo:namePart>
    <hbo:namePart type="lectorate">Electronisch Uitgeven</hbo:namePart>
  </hbo:name>
</extension>
(...)

Tip

See also: HBO MODS Extension

.

 

3. Dates

Dates are specified according to ISO-8601 using the RECOMMENDED notation YYYY-[MM-[DD]]. In this notation, only the year is a REQUIRED part. A month MUST be specified when the day is present. It is RECOMMENDED to specify both year, month and day.

...

Code Block
xml
xml
titleExample

(...)
<originInfo>
  <dateIssued encoding="iso8601">2011-03-23</dateIssued>
</originInfo>
(...)

...

Code Block
xml
xml
titleExample

(...)
<originInfo>
  <dateCreated encoding="iso8601">2010-12-07</dateCreated>
</originInfo>
(...)

...

Code Block
xml
xml
titleExample

(...)
<originInfo>
  <dateOther type="embargo" encoding="iso8601">2011-05-17</dateOther>
</originInfo>
(...)

...

Code Block
xml
xml
titleExample

(...)
<originInfo>
  <dateOther type="approved" encoding="iso8601">2011-02-28</dateIssued>
</originInfo>
(...)

 

4. Keywords, Classifications and Target Audiences

...

Code Block
xml
xml
titleExample

(...)
<subject xml:lang="nl">
  <topic>metadata</topic>
  <topic>digitale brievenbus</topic>
</subject>
<subject xml:lang="en">
  <topic>keyword</topic>
</subject>
(...)

...

Code Block
xml
xml
titleExample

(...)
<classification authorityURI="info:eu-repo/classification/Nbc" displayLabel="Informatica">54</classification>
(...)

...

Code Block
xml
xml
titleExample

(...)
<targetAudience authority="marctarget">general</targetAudience>
(...)

...

Code Block
xml
xml
titleExample

(...)
<subject>
  <geographic>Netherlands</geographic>
</subject>
(...)

...

Code Block
xml
xml
titleExample

(...)
<subject>
  <temporal encoding="iso8601">1985-05</temporal>
</subject>
(...)

 

5. Related bibliographic material

...

Code Block
xml
xml
titleExample

(...)
<relatedItem type="host">
  <identifier type="uri">URN:ISSN:0304-3940</identifier>
  <titleInfo>
    <title>Neuroscience Letter</title>
  </titleInfo>
  <originInfo>
   <place>Amsterdam</place>
   <publisher>Elsevier</publisher>
  </originInfo>
  <part>
    <detail type="volume">
      <number>77</number>
    </detail>
    <detail type="issue">
      <number>1</number>
    </detail>
    <extent unit="page">
      <start>71</start>
      <end>75>
    </extend>
  </part>
</relatedItem>
(...)

 

6. Bilbliographic Identifiers

...

Code Block
xml
xml
titleExample

(...)
<name type="personal" ID="n1">
  <namePart type="family">Vries, de</namePart>
  <namePart type="given">J. (Jan)</namePart>
  <role>
    <roleTerm authority="marcrelator" type="code">aut</roleTerm>
  </role>
</name>
(...)
<extension>
  <dai:daiList
    xmlns:dai="info:eu-repo/dai"
    xsi:schemaLocation="info:eu-repo/dai
    http://www.surfgroepen.nl/sites/oai/metadata/Shared%20Documents/dai-extension.xsd">
    <dai:identifier IDref="n1" authority="someAuthority">123456789</identifier>
  </dai:daiList>
</extension>
(...)

...

Code Block
xml
xml
titleExample

(...)
<identifier type="someType">1234567890</identifier>
(...)

...

Code Block
xml
xml
titleExample

(...)
<location>http://thirdparty.org/resource</location>
(...)

...

Code Block
xml
xml
titleExample

(...)
<extension>
	<wmp:rights
		xmlns:wmp=http://www.surfgroepen.nl/werkgroepmetadataplus
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xsi:schemaLocation="http://www.surfgroepen.nl/werkgroepmetadataplus rights.xsd">
		<dc:description>
			© 2010 Hogeschool van Amsterdam
			This work is licensed under a Creative Commons
			Attribution-Noncommercial-No Derivative Works 3.0 Unported License.
		</dc:description>
		<dc:rights>http://creativecommons.org/licenses/by-nc-nd/3.0/</dc:rights>
	</wmp:rights>
</extension>
(...)

...