当前位置: 首页 > 网络学院 > XML相关教程 > RDF > RDF 都柏林核心

RDF
RDF 介绍
RDF 规则
RDF 实例
RDF 元素
RDF 容器
RDF 集合
RDF Schema
RDF 都柏林核心
RDF 参考
RDF OWL

RDF 都柏林核心


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 655 ::
收藏到网摘: n/a

The Dublin Core Metadata Initiative (DCMI) has created some predefined properties for describing documents.
都柏林核心元数据倡议 (DCMI) 已创建了一些供描述文档的预定义属性。


The Dublin Core
都柏林核心

RDF is metadata (data about data). RDF is used to describe information resources.
RDF 是元数据(关于数据的数据)。RDF 被用于描述信息资源。

The Dublin Core is a set of predefined properties for describing documents.
都柏林核心是一套供描述文档的预定义属性。

The first Dublin Core properties were defined at the Metadata Workshop in Dublin, Ohio in 1995 and is currently maintained by the Dublin Core Metadata Initiative.
第一份都柏林核心属性是于1995年 在俄亥俄州的都柏林的元数据工作组被定义的,目前由都柏林元数据倡议来维护。

Property
属性
Definition
定义
Contributor
提供者
An entity responsible for making contributions to the content of the resource
一个负责为资源内容作出贡献的实体(如作者)
Coverage
覆盖
The extent or scope of the content of the resource
资源内容的氛围或作用域
Creator
创建者
An entity primarily responsible for making the content of the resource
一个主要负责创建资源内容的实体
Format
格式
The physical or digital manifestation of the resource
物理或数字的资源表现形式
Date
日期
A date of an event in the lifecycle of the resource
在资源生命周期中某事件的日期
Description
描述
An account of the content of the resource
对资源内容的说明
Identifier
标识符
An unambiguous reference to the resource within a given context
一个对在给定上下文中的资源的明确引用
Language
语言
A language of the intellectual content of the resource
资源智力内容所用的语言
Publisher
发行者
An entity responsible for making the resource available
一个负责使得资源内容可用的实体
Relation
关联
A reference to a related resource
一个对某个相关资源的引用
Rights
专利
Information about rights held in and over the resource
有关保留在资源之内和之上的权利的信息
Source
来源
A Reference to a resource from which the present resource is derived
一个对作为目前资源的来源的资源引用
Subject
主题
A topic of the content of the resource
一个资源内容的主题
Title
标题
A name given to the resource
一个给资源起的名称
Type
类别
The nature or genre of the content of the resource
资源内容的种类或类型

A quick look at the table above indicates that RDF is ideal for representing Dublin Core information.
通过浏览上面这个表格,我们可以发现 RDF 是非常适合表示都柏林核心信息的。


RDF Example
RDF 实例

The following example demonstrates the use of some of the Dublin Core properties in an RDF document:
下面的例子演示了都柏林核心属性在一个 RDF 文档中的使用:

<?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.w3schools.com">
<dc:title>D-Lib Program</dc:title>
<dc:description>W3Schools - Free tutorials</dc:description>

<dc:publisher>Refsnes Data as</dc:publisher>
<dc:date>1999-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>

评论 (0) All

登陆 | 还没注册?