The Dublin Core™
Metadata Element Set V1.1 (DCMES) can be represented in
many syntax formats. This document explains how to encode
the DCMES in RDF/XML, provides a DTD to validate the documents
and describes a method to link them from web pages.
The Dublin Core™ Metadata Element Set V1.1 (DCMES) [DCMES] can be represented in many syntax formats. This document gives an encoding for the DCMES in XML[XML-SPEC] using simple RDF[RDFMS], provides a DTD and XML Schema[XMLSCHEMA] to validate the documents and describes a method to link them from web pages.
This document describes an encoding for the DCMES in XML subject to these restrictions:
The Dublin Core™ elements described in the DCMES V1.1 reference can be used
No other elements can be used
No element qualifiers can be used
The resulting XML cannot be embedded in web pages
The primary goal for this document is to provide a simple encoding, where there are no extra elements, qualifiers, optional or varying parts allowed. This allows the resulting data to be validated against a DTD and guaranteed usable by XML parsers. A secondary goal was to make the encoding also be valid RDF[RDFMS] which allows the document to be manipulated using the RDF model. We have tried to limit the RDF constructs to the minimum, and the result is a mostly standard header and footer for every document.
We acknowledge that there will be further documents describing other encodings for DC without these restrictions however this one is for the simplest possible form. One result of the restrictions is that the encoding does not create documents that can be embedded in HTML pages. Please refer to other Dublin Core™ documents that can describe how to do that.
This document is based on previous work such as [EM-DTD], [BATHP], [CIMI-XML-TB] and [CIMI-DC-DTD].
Any well-formed XML document should include a statement of the version of XML used (and content encoding). At present, the only valid version of XML, as defined in the W3C Recommendation, is 1.0. It is therefore strongly recommended to include the statement
For each resource described by Dublin Core™ elements, they must be enclosed in a container element - a pair of rdf:Description tags - with one container for each resource. Resources may have no, one or several identifiers and these can be URIs. If a resource has at least one URI, the most appropriate one should be used in the about attribute of the rdf:Description element like this:
(see below for what to do about other _Identifier_ elements)
Inside the rdf:Description container, put each of the Dublin Core™ elements with the dc: namespace prefix before them, so for example the Title element becomes dc:title (all lowercase) and used inside the rdf:Description container like this:
<rdf:Description rdf:about="http://..../">
<dc:title>My Home Page</dc:title>
</rdf:Description>
This can be repeated for all other DCMES elements that are needed with the standard Dublin Core™ guidelines - all elements are repeatable and optional. Note that there is no requirement on applications consuming this document to preserve the order of elements in the container and therefore you should not expect this to be preserved.
If the value of the Dublin Core™ element is not plain text, but another resource with a URI, that should be recorded using the rdf:resource attribute on the element. The element must have no content which is done by starting and closing the element at the same time like this:
There may be more than one Identifier element for the resource containing URIs or other identifiers. If a URI identifier is available and appropriate to use, it should be made the value of the about attribute of the rdf:Description element as described above. The remaining values of the Identifier elements should be encoded in the same manner as the other elements. Here is a fragment of a description of a book which has a non-URI identifier:
It may be that there is no identifier for the resource, in which case neither of the above methods should be used and both the about attribute and Identifier element left out. This is used something like this:
<rdf:Description>
<dc:title>The Mona Lisa</dc:title>
<dc:description>A painting by ...</dc:description>
</rdf:Description>
XML provides an xml:lang attribute that can be used on any element. This provides a way to describe the language used for the content of the element. The DCMES provides a Language element which is used to describe the language of the resource.
The values of the elements and attributes will need to be encoded using the rules of XML when there are special characters in the value. The special characters that need to be encoded, and when they need to be are summarised here for reference:
Note that the ' and " only need to be used for those character inside attribute values, which are only needed for the rdf:resource attribute (see Section 2.4) and the xml:lang attribute (see Section 2.5).
All other characters outside the core US-ASCII range of 32-126 should not be encoded with the HTML entities such as é since these are not defined in XML. Numeric entities for the characters should be used which are written as &#ddd; in decimal or ઼ in hexadecimal. Alternatively they can be encoded as Unicode in one of the formats such as UTF-8 which is widely supported.
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF SYSTEM "http://dublincore.org/2000/12/01-dcmes-xml-dtd.dtd">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc ="http://purl.org/dc/elements/1.1/">
<rdf:Description rdf:about="http://dublincore.org/">
<dc:title>Dublin Core™ Metadata Initiative - Home Page</dc:title>
<dc:description>The Dublin Core™ Metadata Initiative Web site.</dc:description>
<dc:date>1998-10-10</dc:date>
<dc:format>text/html</dc:format>
<dc:language>en</dc:language>
<dc:contributor>The Dublin Core™ Metadata Initiative</dc:contributor>
<!-- My guess at the French for the above Dave -->
<dc:contributor xml:lang="fr">L'Initiative de métadonnées du Dublin Core</dc:contributor>
<dc:contributor xml:lang="de">der Dublin-Core Metadata-Diskussionen</dc:contributor>
</rdf:Description>
</rdf:RDF>
</td>
</tr>
</tbody>
</table>
</center>
4. Linking to Dublin Core™ metadata in XML from HTML
Dublin Core™ encoded in the method described here can be refered to from an HTML document and associated with it by means of the HTML element. The recommended relation type for this purpose is REL="meta", used like this:
<LINK REL="meta" HREF="mydoc.dcxml">
where mydoc.dcxml is the URI of the XML document being refered to.
Appendix A - DTD for Simple Dublin Core™ Metadata Element Set 1.1 in RDF/XML
<!--
XML DTD 2000-12-01 for Dublin Core™ Metadata Element Set version 1.1
http://dublincore.org/specifications/dublin-core/2000/11/dcmes-xml/dcmes-xml-dtd.dtd
See
An XML Encoding of Simple Dublin Core™ Metadata - 2000-12-01
http://dublincore.org/specifications/dublin-core/2000/11/dcmes-xml/
Authors:
Dave Beckett <[email protected]>
Eric Miller <[email protected]>
Dan Brickley <[email protected]>
Based on
Dublin Core™ Metadata Element Set, Version 1.1: Reference Description
http://dublincore.org/specifications/dublin-core/rec/dces-19990702.shtml
-->
<!-- The namespaces for RDF and DCMES 1.1 respectively -->
<!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#' >
<!ENTITY dcns 'http://purl.org/dc/elements/1.1/' >
<!-- Declare convenience entities for XML namespace declarations -->
<!ENTITY % rdfnsdecl 'xmlns:rdf CDATA # fixed "&rdfns;"' >
<!ENTITY % dcnsdecl 'xmlns:dc CDATA # fixed "&dcns;"' >
<!-- The wrapper element -->
<!ELEMENT rdf:RDF (rdf:Description)* >
<!ATTLIST rdf:RDF %rdfnsdecl; %dcnsdecl; >
<!ENTITY % dcmes "dc:title | dc:creator | dc:subject | dc:description |
dc:publisher | dc:contributor | dc:date | dc:type | dc:format |
dc:identifier | dc:source | dc:language | dc:relation | dc:coverage |
dc:rights" >
<!-- The resource description container element -->
<!ELEMENT rdf:Description (%dcmes;)* >
<!ATTLIST rdf:Description rdf:about CDATA #IMPLIED>
<!-- The elements from DCMES 1.1 -->
<!-- The name given to the resource. -->
<!ELEMENT dc:title (#PCDATA)>
<!ATTLIST dc:title xml:lang CDATA #IMPLIED>
<!-- An entity primarily responsible for making the content of the
resource. -->
<!ELEMENT dc:creator (#PCDATA)>
<!ATTLIST dc:creator xml:lang CDATA #IMPLIED>
<!-- The topic of the content of the resource. -->
<!ELEMENT dc:subject (#PCDATA)>
<!ATTLIST dc:subject xml:lang CDATA #IMPLIED>
<!-- An account of the content of the resource. -->
<!ELEMENT dc:description (#PCDATA)>
<!ATTLIST dc:description xml:lang CDATA #IMPLIED>
<!-- The entity responsible for making the resource available. -->
<!ELEMENT dc:publisher (#PCDATA)>
<!ATTLIST dc:publisher xml:lang CDATA #IMPLIED>
<!-- An entity responsible for making contributions to the content of
the resource. -->
<!ELEMENT dc:contributor (#PCDATA)>
<!ATTLIST dc:contributor xml:lang CDATA #IMPLIED>
<!-- A date associated with an event in the life cycle of the resource. -->
<!ELEMENT dc:date (#PCDATA)>
<!ATTLIST dc:date xml:lang CDATA #IMPLIED>
<!-- The nature or genre of the content of the resource. -->
<!ELEMENT dc:type (#PCDATA)>
<!ATTLIST dc:type xml:lang CDATA #IMPLIED>
<!-- The physical or digital manifestation of the resource. -->
<!ELEMENT dc:format (#PCDATA)>
<!ATTLIST dc:format xml:lang CDATA #IMPLIED>
<!-- An unambiguous reference to the resource within a given context. -->
<!ELEMENT dc:identifier (#PCDATA)>
<!ATTLIST dc:identifier xml:lang CDATA #IMPLIED>
<!ATTLIST dc:identifier rdf:resource CDATA #IMPLIED>
<!-- A Reference to a resource from which the present resource is derived. -->
<!ELEMENT dc:source (#PCDATA)>
<!ATTLIST dc:source xml:lang CDATA #IMPLIED>
<!ATTLIST dc:source rdf:resource CDATA #IMPLIED>
<!-- A language of the intellectual content of the resource. -->
<!ELEMENT dc:language (#PCDATA)>
<!ATTLIST dc:language xml:lang CDATA #IMPLIED>
<!-- A reference to a related resource. -->
<!ELEMENT dc:relation (#PCDATA)>
<!ATTLIST dc:relation xml:lang CDATA #IMPLIED>
<!ATTLIST dc:relation rdf:resource CDATA #IMPLIED>
<!-- The extent or scope of the content of the resource. -->
<!ELEMENT dc:coverage (#PCDATA)>
<!ATTLIST dc:coverage xml:lang CDATA #IMPLIED>
<!-- Information about rights held in and over the resource. -->
<!ELEMENT dc:rights (#PCDATA)>
<!ATTLIST dc:rights xml:lang CDATA #IMPLIED>
Appendix B - XML Schema for Simple Dublin Core™ Metadata Element Set 1.1 in RDF/XML