RDF Dublin Core
RDF Dublin Core Metadata Initiative
The Dublin Core Metadata Initiative (DCMI) has created a number of predefined properties for describing documents.
Dublin Core
RDF is metadata (data about data). RDF is used to describe information resources.
Dublin Core is a set of predefined properties for describing documents.
The first Dublin Core attributes were defined in 1995 by the Metadata Working Group in Dublin, Ohio, and are currently maintained by the Dublin Metadata Initiative.
Attributes | Definition |
---|---|
Contributor | A person responsible for contributing to resource content Entity (such as author). |
Coverage | The atmosphere or scope of resource content |
Creator | A person mainly responsible for creating resources The content entity. |
Format | The physical or digital resource representation. |
Date | The date of an event in the resource life cycle. |
Description | Description of resource content. |
Identifier | An explicit reference to a resource in a given context |
Language | The language in which the intellectual content of the resource is used. |
Publisher | An entity responsible for making resource content available |
Relation | An entity responsible for making resource content available Citation of relevant resources |
Rights | Information about rights reserved in and over the resources |
Source | A resource reference that is the source of the current resource. |
Subject | The subject of a resource content |
Title | A name given to the resource |
Type | The type or type of resource content. |
By browsing the above table, we can find that RDF is very suitable for representing Dublin Core information.
RDF Example
The following example demonstrates the use of Dublin Core attributes in an RDF document:
<?xml version="1.0 "?>
<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://www.php.cn">
<dc:description>Run Noob - Run! php</dc:description>
<dc:publisher>Refsnes Data as</dc:publisher>
<dc:date>2008-09-01</dc:date>
<dc:type>Web Development</dc:type>
<dc:format>text/html</dc:format>
<dc:language>en</dc:language>
</rdf:Description>
</rdf:RDF>
<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://www.php.cn">
<dc:description>Run Noob - Run! php</dc:description>
<dc:publisher>Refsnes Data as</dc:publisher>
<dc:date>2008-09-01</dc:date>
<dc:type>Web Development</dc:type>
<dc:format>text/html</dc:format>
<dc:language>en</dc:language>
</rdf:Description>
</rdf:RDF>