现在的位置: 首页 > 综合 > 正文

(摘录)(ASWP chap3)Describing Web Resource in RDF

2013年02月04日 ⁄ 综合 ⁄ 共 2511字 ⁄ 字号 评论关闭

3.1 Introduction

1. RDF schema is quite different from XML Schema

XML Schema constrains the structure of XML documents, whereas
RDF Schema defines the vocabulary used in RDF data models.

3.2 RDF: Basic Ideas

1. Concepts

Resource

Property

Statement

2. reification(具体化) mechanism

3. typed literal

RDF里用到的很多数据类型是在XML Schema里定义的,比如Boolean, integer

3.3 RDF: XML-Based syntax

1.  XMLRDFNamespace的区别

XML中的namespace是用来保证元素的唯一性.

RDF中的external namespace指向一个RDF文件,这个文件里定义了一些resource,被导入到了当前RDF.

2. 引用namespace的一种写法

<rdf:RDF

       xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

       xmlns:xsd="http://www.w3.org/2001/XLMSchema#"

       xmlns:uni="http://www.mydomain.org/uni-ns#">

       ……

<rdf:Description
rdf:about="CIT1111">

<rdf:type rdf:resource="&uni;course"/>

// 应该相当于 <rdf:type rdf:resource=”http://www.mydomain.org/uni-ns#course”>,
&uni用来指代xmlns:uni的值

       <uni:courseName>Discrete
Mathematics</uni:courseName>

       <uni:isTaughtBy
rdf:resource="949318"/>

</rdf:Description>

3.4 RDF Schema: Basic Idea

1. RDF Schema is a primitive ontology
language.

2. In RDFS, properties are defined
globally.

3. In RDFS, properties also have class
hierarchy.

4. RDFS ingredients: subClassOf, Class,
Property, subPropertyOf, Resource, etc.

3.5 RDF Schema: The Language

1. Core Class

rdfs:Resource

rdfs:Class

rdfs:Literal

rdf:Property

rdf:Statement

2. Core Property for defining relationship

rdfs:domain

       指定可以做这个propertysubjet

rdfs:range

       指定可以做这个propertyobject

3. Useful Properties for Reification

rdf:subject

rdf:predicate

rdf:object

4. Container Class

rdf:Bag

rdf:Alt

rdf:Seq

5. Utillity Properties

rdfs:seealso

rdfs:comment

3.6 RDF and RDF Schema in RDF Schema

3.7 An Axiomatic Semantics for RDF and RDF Schema

// 没看

逻辑推理

3.8 A Direct Inference System for RDF and RDFS

// 没看

3.9 Querying in RQL

1. Why not use XML query language?

(1) 相同的内容可以用不同的形式来表示,无法用统一的XPath语句来查询

如以下3段都表示了相同的意思:

<rdf:Description rdf:about="949318">

       <rdf:type
rdf:resource="&uni;lecturer"/>

       <uni:name>David
Billington</uni:name>

       <uni:title>Associate
Professor</uni:title>

</rdf:Description>

rdf query: /rdf:Description[rdf:type="http://www.mydomain.org/uni-ns#lecturer"]/uni:title

<uni:lecturer
rdf:about="949318">

       <uni:name>David
Billington</uni:name>

       <uni:title>Associate
Professor</uni:title>

</uni:lecturer>

rdf query: //uni:lecturer/uni:title

         

<uni:lecturer
rdf:about="949318"

              uni:name="David
Billington"

              uni:title="Associate
Professor"/>

rdf query: //uni:lecturer/@uni:title

(2) XML 查询语言(XPath) 不支持semantic(如无法理解继承关系)

2 RQL的基本语法

见教材

3.10 Summary

Suggested Reading

An extensive list of tools and other
resources is maintained at:


<http://www.ilrt.bris.ac.uk/discovery/rdf/resources/>.

<http://www.w3.org/RDF>

抱歉!评论已关闭.