Skip to content

Dublin Core

Vincent W.J. van Gerven Oei edited this page Jun 7, 2021 · 4 revisions

Dublin Core defines a set of 15 "core" metadata elements for the description of digital resources. Dublin Core has been standardized as ISO 15836.

The following 15 elements form the Dublin Core:

  • contributor
  • coverage
  • creator
  • date
  • description
  • format
  • identifier
  • language
  • publisher
  • relation
  • rights
  • source
  • subject
  • title
  • type

All 15 elements are covered by the metadata schema underlying Thoth and therefore Thoth should be able to output Dublin Core data in which language required.

The way in which Dublin Core elements are encoded has not been specified. Here is an example provided by the LOC in SGML:

<!DOCTYPE dublinCore PUBLIC '-//OCLC//DTD Dublin core v.1//EN'>
<dublinCore>
  <title>[Portrait of Zora Neale Hurston]</title>
  <author type='photographer'>Van Vechten, Carl</author>
  <otherAgent type='digitizer'>Any Library</otherAgent>
  <subject scheme='gmgpc'>Portrait Photographs</subject>
  <objectType>image</objectType>
  <form scheme='IMT'>image/jpeg</form>
  <relation type='ammemParent'>vanv</relation>
  <identifier type='URN'>hdl:loc.pp.vanv/5a52142</identifier>
</dublinCore>

A different example from Wikipedia, following the encoding suggested by this users' guide:

    <meta name="DC.Format" content="video/mpeg; 10 minutes" />
    <meta name="DC.Language" content="en" />
    <meta name="DC.Publisher" content="publisher-name" />
    <meta name="DC.Title" content="HYP" />

Dublin Core specs can be used inside OPDS feeds.

Clone this wiki locally