RDF Quick Start...login
RDF Quick Start Tutorial
author:php.cn  update time:2022-04-11 14:47:18

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.

AttributesDefinition
ContributorA person responsible for contributing to resource content Entity (such as author).
CoverageThe atmosphere or scope of resource content
CreatorA person mainly responsible for creating resources The content entity.
FormatThe physical or digital resource representation.
DateThe date of an event in the resource life cycle.
DescriptionDescription of resource content.
IdentifierAn explicit reference to a resource in a given context
Language The language in which the intellectual content of the resource is used.
PublisherAn entity responsible for making resource content available
RelationAn entity responsible for making resource content available Citation of relevant resources
RightsInformation about rights reserved in and over the resources
SourceA resource reference that is the source of the current resource.
SubjectThe subject of a resource content
TitleA name given to the resource
TypeThe 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>

php.cn