Modify the following XML document so that it is also a valid RDF document:

Size: px
Start display at page:

Download "Modify the following XML document so that it is also a valid RDF document:"

Transcription

1 RDF

2 XML --> RDF Modify the following XML document so that it is also a valid RDF document: XML <River id="yangtze" xmlns=" <length>6300 kilometers</length> Yangtze.xml "convert to" RDF <River rdf:id="yangtze" xmlns=" <length>6300 kilometers</length> Yangtze.rdf

3 The RDF Format 1 RDF provides an ID attribute for identifying the resource being described. 2 The ID attribute is in the RDF namespace. <River rdf:id="yangtze" xmlns=" <length>6300 kilometers</length> 3 Add the "fragment identifier symbol" to the namespace.

4 The RDF Format (cont.) 3 1 Identifies the type (class) of the resource being described. These are properties, or attributes, of the type (class). 2 Identifies the resource being described. This resource is an instance of River. <River rdf:id="yangtze" xmlns=" <length>6300 kilometers</length> 4 Values of the properties

5 Best Practice Namespace Convention Question: Why was "#" placed onto the end of the namespace? E.g., xmlns=" Answer: RDF is very concerned about uniquely identifying things - uniquely identifying the type (class) and uniquely identifying the properties. If we concatenate the namespace with the type then we get a unique identifier for the type, e.g., If we concatenate the namespace with a property then we get a unique identifier for the property, e.g., Thus, the "#" symbol is simply a mechanism for separating the namespace from the type name and the property name.

6 The RDF Format <Class rdf:id="resource" xmlns="uri"> <property>value</property> <property>value</property>... </Class>

7 Uniquely Identify the Resource Earlier we said that RDF is very concerned about uniquely identifying the type (class) and the properties. RDF is also very concerned about uniquely identifying the resource, e.g., This is the resource being described. We want to uniquely identify this resource. <River rdf:id="yangtze" xmlns=" <length>6300 kilometers</length>

8 rdf:id The value of rdf:id is a "relative URI". The "complete URI" is obtained by concatenating the URL of the XML document with "#" and then the value of rdf:id, e.g., <River rdf:id="yangtze" xmlns=" <length>6300 kilometers</length> Yangtze.rdf Suppose that this RDF/XML document is located at this URL: Thus, the complete URI for this resource is:

9 xml:base On the previous slide we showed how the URL of the document provided the base URI. Depending on the location of the document is brittle: it will break if the document is moved, or is copied to another location. A more robust solution is to specify the base URI in the document, e.g., <River rdf:id="yangtze" xmlns=" xml:base=" <length>6300 kilometers</length> Resource URI = concatenation(xml:base, '#', rdf:id) = concatenation( '#', "Yangtze") =

10 rdf:about Instead of identifying a resource with a relative URI (which then requires a base URI to be prepended), we can give the complete identity of a resource. However, we use rdf:about, rather than rdf:id, e.g., <River rdf:about=" xmlns=" <length>6300 kilometers</length>

11 Triple -> resource/property/value has a of 6300 kilometers resource property value has a of western China's resource property value has a of East China Sea resource property value

12 The RDF Format = triples! The fundamental design pattern of RDF is to structure your XML data as resource/property/value triples! value of property-a value of property-b <Resource-A> <property-a> <Resource-B> <property-b> <Resource-C> <property-c> Value-C </property-c> </Resource-C> </property-b> </Resource-B> </property-a> </Resource-A> Notice that the RDF design pattern is an alternating sequence of resource-property. This pattern is known as "striping". The value of a property can be a literal (e.g., length has a value of 6300 kilometers). Also, the value of a property can be a resource, as shown above (e.g., property-a has a value of Resource-B, property-b has a value of Resource-C). We will see examples of properties having a resource value in a little bit.

13 Naming Convention The convention is to use a capital letter to start a type (class) name, and use a lowercase letter to start a property name. This helps the eye quickly discern the striping pattern. uppercase lowercase <River rdf:about=" xmlns=" <length>6300 kilometers</length>

14 RDF Model (graph) Legend: Ellipse indicates "Resource" Rectangle indicates "literal string value"

15 rdf:description + rdf:type There is still another way of representing the XML. This way makes it very clear that you are describing something, and it makes it very clear what the type (class) is of the thing you are describing: <rdf:description rdf:about=" xmlns=" <rdf:type rdf:resource=" <length>6300 kilometers</length> </rdf:description> This is read as: "This is a Description about the resource This resource is an instance of the River type (class). The resource has a length of 6300 kilometers, a startinglocation of western China's Qinghai-Tibet Plateau, and an endinglocation of the East China Sea." Note: this form of describing a resource is called the "long form". The form we have seen previously is an abbreviation of this long form. An RDF Parser interprets the abbreviated form as if it were this long form.

16 Alternative Alternatively we can use rdf:id rather than rdf:about, as shown here: <rdf:description rdf:id="yangtze" xmlns=" xml:base=" <rdf:type rdf:resource=" <length>6300 kilometers</length> </rdf:description>

17 Equivalent Representations! <River rdf:id="yangtze" xmlns=" xml:base=" <length>6300 kilometers</length> <River rdf:about=" xmlns=" <length>6300 kilometers</length> <rdf:description rdf:about=" xmlns=" <rdf:type rdf:resource=" <length>6300 kilometers</length> </rdf:description> Note: In the RDF literature the examples are typically shown in this form.

18 RDF Namespace ID about type resource Description

19 Terminology As you read the RDF literature you may see the following terminology: Subject: this term refers to the item that is playing the role of the resource. predicate: this term refers to the item that is playing the role of the property. Object: this term refers to the item that is playing the role of the value. Subject predicate Object Equivalent! Resource property Value

20 Modify the following XML document so that it is RDF-compliant: <River id="yangtze" xmlns=" <length>6300 kilometers</length> <Dam id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> Yangtze2.xml

21 Note the two types (classes) River Dam Instance: Yangtze Properties: length startinglocation endinglocation Instance: ThreeGorges Properties: name width height cost

22 Dam - out of place Dam <River id="yangtze" xmlns=" <length>6300 kilometers</length> <Dam id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> Types (classes) contain properties. Here we see the River type containing the properties - length, startinglocation, and endinglocation. It also shows River containing a type - Dam. Thus, there is a Resource that contains another Resource. This is inconsistent with RDF design pattern. (We are seeing one of the benefits of using the RDF format - to identify inconsistencies in an XML design.)

23 Property value must be a Literal or a Resource <length>6300 kilometers</length> property Value is a Resource property Value is a Literal <obstacle> <Dam id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> </obstacle>

24 Modified XML (to make it consistent) <River id="yangtze" xmlns=" <length>6300 kilometers</length> <obstacle> <Dam id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> </obstacle> Yangtze2,v2.xml "The Yangtze River has an obstacle that is the ThreeGorges Dam. The Dam has a name - The Three Gorges Dam. It has a width of 1.5 miles, a height of 610 feet, and a cost of $30 billion."

25 RDF Format <River rdf:id="yangtze" xmlns=" xml:base=" <length>6300 kilometers</length> <obstacle> <Dam rdf:id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> </obstacle> Changed id to rdf:id Added the '#' symbol As always, the other representations using rdf:about and rdf:description are available.

26 RDF Model (graph)

27 Alternatively, suppose that someone has already created a document containing information about the Three Gorges Dam: <Dam rdf:id="threegorges" xmlns=" xml:base=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> Three-Gorges-Dam.rdf Then we can simply reference the Three Gorges Dam resource using rdf:resource, as shown here: <River rdf:id="yangtze" xmlns=" xml:base=" <length>6300 kilometers</length> <obstacle rdf:resource=" Yangtze.rdf

28 Anyone, Anywhere, Anytime Can Talk About a Resource In all of our examples we have provided a unique identifier to resources, e.g., Consequently, if another RDF document identifies the same resource then the data that it specifies gives additional data about that resource. An aggregator tool will be able to collect all data about a resource and present a consolidated set of data for the resource. That's powerful!

29 rdf:id versus rdf:about When should rdf:id be used? When should rdf:about be used? When you want to introduce a resource, and provide an initial set of information about a resource use rdf:id When you want to extend the information about a resource use rdf:about The RDF philosophy is akin to the Web philosophy. That is, anyone, anywhere, anytime can provide information about a resource.

30 XML <River id="yangtze" xmlns=" xmlns:uom=" <length uom:units="kilometers">6300</length> Yangtze4.xml RDF <River rdf:id="yangtze" xmlns=" xmlns:uom=" <length> <rdf:description> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </rdf:description> </length> Yangtze4.rdf

31 <River id="yangtze" xmlns=" xmlns:uom=" <length uom:units="kilometers">6300</length> Yangtze4.xml RDF does not allow attributes on the properties (except for special RDF attributes such as rdf:resource). So we need to make the uom:units attribute a child element. Your first instinct might be to modify length to have two child elements: <River id="yangtze" xmlns=" xmlns:uom=" <length> <value>6300</value> <uom:units>kilometers</uom:units> </length> However, now the length property has as its value two values. RDF only binary relations i.e., a single value for a property.

32 rdf:value length 6300 kilometers length has two values and kilometers. RDF provides a special property, rdf:value, to be used for specifying the "primary" value. In this example, 6300 is the primary value, and kilometers is a value which provides additional information about the primary value.

33 RDF Format An anonymous resource <River rdf:id="yangtze" xmlns=" xmlns:uom=" <length> <rdf:description> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </rdf:description> </length> Yangtze4.rdf Read this as: "The Yangtze River has a length whose value is a resource which has a value of 6300 and whose units is kilometers.

34 Advantage of anonymous resources <rdf:description> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </rdf:description> This is an anonymous resource. Its purpose is solely to provide a context for the two properties. Other RDF documents will have no need to amplify this resource. So, in this case, there is no reason for giving the resource an identifier. In this case it makes good sense to use an anonymous resource.

35 RDF Model (graph) Legend: An anonymous resource (also called a "blank node"). That is, a resource with no identifier. (Note: RDF Parsers will typically generate a unique identifier for anonymous resources, to distinguish one anonymous resource from another.)

36 rdf:parsetype="resource" If the value of a property is comprised of several values then one option is to create an anonymous resource, as we saw. RDF provides a shorthand, so that you don't need to create an rdf:description element, by using rdf:parsetype="resource", as shown here: <River rdf:id="yangtze" xmlns=" xmlns:uom=" <length rdf:parsetype="resource"> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </length> Yangtze4,v2.rdf The meaning of this is identical to that shown on the previous slide.

37 Equivalent! <length> <rdf:description> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </rdf:description> </length> <length rdf:parsetype="resource"> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </length>

38 RDF Format! <River rdf:id="yangtze" xmlns=" xmlns:uom=" xml:base=" <length rdf:parsetype="resource"> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </length> <obstacle> <Dam rdf:id="threegorges" xmlns=" <name>the Three Gorges Dam</name> <width>1.5 miles</width> <height>610 feet</height> <cost>$30 billion</cost> </Dam> </obstacle> Yangtze.rdf With relatively few changes the XML document is now usable by both XML tools and RDF tools!

39 Modify the following XML document so that it is also a valid RDF document: <River id="yangtze" xmlns=" xmlns:uom=" <length uom:units="kilometers">6300</length> <maxwidth uom:units="meters">175</maxwidth> <maxdepth uom:units="meters">55</maxdepth> Yangtze5.xml <River rdf:id="yangtze" xmlns=" xmlns:uom=" <length rdf:parsetype="resource"> <rdf:value>6300</rdf:value> <uom:units>kilometers</uom:units> </length> <maxwidth rdf:parsetype="resource"> <rdf:value>175</rdf:value> <uom:units>meters</uom:units></maxwidth> <maxdepth rdf:parsetype="resource"> <rdf:value>55</rdf:value> <uom:units>kilometers</uom:units> </maxdepth> Yangtze5.rdf This is one way of doing it. Now we will see a better way - using "typed literals". (See next slide)

40 Alternate RDF Format <River rdf:id="yangtze" xmlns=" <length rdf:datatype=" <maxwidth rdf:datatype=" <maxdepth rdf:datatype=" Yangtze5.rdf With rdf:datatype you can give a property's value a datatype label. The rdf:datatype value acts as a semantic label for the datatype of the value. This is called a typed literal. For this example there must be a namespace, which defines two datatypes - kilometer and meter. On the next slide is shown how to do this using XML Schemas.

41 Defining the kilometer and meter datatypes using XML Schemas <?xml version="1.0" encoding="utf-8"?> <schema xmlns:xsd=" targetnamespace=" <simpletype name="kilometer"> <restriction base="integer"> </restriction> </simpletype> <simpletype name="meter"> <restriction base="integer"> </restriction> </simpletype> </schema> uom.xsd

42 Another example using rdf:datatype <Person rdf:id="johnsmith" xmlns=" <age rdf:datatype=" </Person> In this example we are specifying that the value (30) of age is a nonnegativeinteger (which is defined in the XML Schema namespace).

43 The rdf:bag type (class) The rdf:bag type is used to represent an unordered collection.

44 Modify the following XML document so that it is also a valid RDF document: <Meeting id="xml-design-patterns" xmlns=" <attendees> <name>john Smith</name> <name>sally Jones</name> </attendees> </Meeting> DesignMeeting.xml <Meeting rdf:id="xml-design-pattern" xmlns=" <attendees> <rdf:bag> <name>john Smith</name> <name>sally Jones</name> </rdf:bag> </attendees> </Meeting> DesignMeeting.rdf rdf:bag makes it clear that this is an unordered collection of names.

45 The rdf:alt type (class) The rdf:alt type is used to represent a set of alternate properties.

46 Modify the following XML document so that it is also a valid RDF document: <Retailer id="barnesandnoble" xmlns=" <weblocation> <url> <url> </weblocation> </Retailer> BarnesAndNoble.xml <Retailer rdf:id="barnesandnoble" xmlns=" <weblocation> <rdf:alt> <url> <url> </rdf:alt> </weblocation> </Retailer> BarnesAndNoble.rdf rdf:alt makes it clear that the urls listed are alternates, i.e., choose one of them.

47 The rdf:seq type (class) The rdf:seq type is used to represent a sequence of properties.

48 Modify the following XML document so that it is also a valid RDF document: <ToDoList id="mondaymeetings" xmlns=" <activities> <activity1>meet with CEO at 10am</activity1> <activity2>luncheon at The Eatery</activity2> <activity3>flight at 3pm</activity3> </activities> </ToDoList> MyDaysActivities.xml <ToDoList rdf:id="mondaymeetings" xmlns=" <activities> <rdf:seq> <activity1>meet with CEO at 10am</activity1> <activity2>luncheon at The Eatery</activity2> <activity3>flight at 3pm</activity3> </rdf:seq> </activities> </ToDoList> MyDaysActivities.rdf rdf:seq makes it clear that the activities listed are to be done in the sequence listed.

49 rdf:li Property The property, rdf:li ("list item"), is provided by RDF for use with either rdf:bag, rdf:alt, or rdf:seq. The rdf:li property is provided for you to specify an item in a Bag/Alt/Seq. An RDF Parser will replace each rdf:li with rdf:_1, rdf:_2, rdf:_3, etc. The following slide recasts the previous examples using the rdf:li property.

50 <Retailer rdf:id="barnesandnoble" xmlns=" <weblocation> <rdf:alt> <rdf:li> <rdf:li> </rdf:alt> </weblocation> </Retailer> BarnesAndNoble.rdf <ToDoList rdf:id="mondaymeetings" xmlns=" <activities> <rdf:seq> <rdf:li>meet with CEO at 10am</rdf:li> <rdf:li>luncheon at The Eatery</rdf:li> <rdf:li>flight at 3pm</rdf:li> </rdf:seq> </activities> </ToDoList> MyDaysActivities.rdf <Meeting rdf:id="xml-design-pattern" xmlns=" <attendees> <rdf:bag> <rdf:li>john Smith</rdf:li> <rdf:li>sally Jones</rdf:li> </rdf:bag> </attendees> </Meeting> DesignMeeting.rdf

51 Dublin Core (dc:) The Dublin Core is a standard set of properties: Content Title Subject Description Language Relation Coverage Source Intellectual Property Creator Publisher Contributor Rights Instance Date Type Format Identifier Note: many people use these properties in their HTML today. For example: <META NAME="DC.Creator" CONTENT="John Smith">

Semantic Web Languages

Semantic Web Languages Semantic Web Languages Courtesy some graphic slides from online Lin Zuoquan Information Science Department Peking University lz@is.pku.edu.cn http://www.is.pku.edu.cn/~lz/teaching/stm/saswws.html Lin Zuoquan

More information

Semantic Web In Depth: Resource Description Framework. Dr Nicholas Gibbins 32/4037

Semantic Web In Depth: Resource Description Framework. Dr Nicholas Gibbins 32/4037 Semantic Web In Depth: Resource Description Framework Dr Nicholas Gibbins 32/4037 nmg@ecs.soton.ac.uk RDF syntax(es) RDF/XML is the standard syntax Supported by almost all tools RDF/N3 (Notation3) is also

More information

RDF. Mario Arrigoni Neri

RDF. Mario Arrigoni Neri RDF Mario Arrigoni Neri WEB Generations Internet phase 1: static contents HTML pages FTP resources User knows what he needs and where to retrieve it Internet phase 2: web applications Custom presentation

More information

RDF. Charlie Abela Department of Artificial Intelligence

RDF. Charlie Abela Department of Artificial Intelligence RDF Charlie Abela Department of Artificial Intelligence charlie.abela@um.edu.mt Last Lecture Introduced XPath and XQuery as languages that allow for accessing and extracting node information from XML Problems?

More information

Knowledge Representation for the Semantic Web

Knowledge Representation for the Semantic Web Knowledge Representation for the Semantic Web Winter Quarter 2012 Pascal Hitzler Slides 2 01/05/2011 Kno.e.sis Center Wright State University, Dayton, OH http://www.knoesis.org/pascal/ KR4SW Winter 2012

More information

RDF(S) Resource Description Framework (Schema)

RDF(S) Resource Description Framework (Schema) RDF(S) Resource Description Framework (Schema) Where are we? OWL Reasoning DL Extensions Scalability OWL OWL in practice PL/FOL XML RDF(S) Practical Topics 2 Where are we? PL, FOL, XML Today: RDF Purposes?

More information

Outline RDF. RDF Schema (RDFS) RDF Storing. Semantic Web and Metadata What is RDF and what is not? Why use RDF? RDF Elements

Outline RDF. RDF Schema (RDFS) RDF Storing. Semantic Web and Metadata What is RDF and what is not? Why use RDF? RDF Elements Knowledge management RDF and RDFS 1 RDF Outline Semantic Web and Metadata What is RDF and what is not? Why use RDF? RDF Elements RDF Schema (RDFS) RDF Storing 2 Semantic Web The Web today: Documents for

More information

XML and Semantic Web Technologies. III. Semantic Web / 1. Ressource Description Framework (RDF)

XML and Semantic Web Technologies. III. Semantic Web / 1. Ressource Description Framework (RDF) XML and Semantic Web Technologies XML and Semantic Web Technologies III. Semantic Web / 1. Ressource Description Framework (RDF) Prof. Dr. Dr. Lars Schmidt-Thieme Information Systems and Machine Learning

More information

Semantic Web Technologies: RDF + RDFS

Semantic Web Technologies: RDF + RDFS Semantic Web Technologies: RDF + RDFS RDF Language RDF Schema The limits of my language are the limits of my world. Ludwig Wittgenstein RDF Expressiveness & Semantics RDF Programming Introduction The Semantic

More information

The SBML Level 3 Annotation package: an initial proposal

The SBML Level 3 Annotation package: an initial proposal The SBML Level 3 Annotation package: an initial proposal Allyson Lister, Neil Swainston, Dagmar Waltemath et al. COMBINE 2010, Edinburgh, England, UK 7 October 2010 Overview Background Limitations of existing

More information

From the Web to the Semantic Web: RDF and RDF Schema

From the Web to the Semantic Web: RDF and RDF Schema From the Web to the Semantic Web: RDF and RDF Schema Languages for web Master s Degree Course in Computer Engineering - (A.Y. 2016/2017) The Semantic Web [Berners-Lee et al., Scientific American, 2001]

More information

RESOURCES DESCRIPTION FRAMEWORK: RDF

RESOURCES DESCRIPTION FRAMEWORK: RDF 1 RESOURCES DESCRIPTION FRAMEWORK: RDF Hala Skaf-Molli Associate Professor Nantes University Hala.Skaf@univ-nantes.fr http://pagesperso.lina.univ-nantes.fr/~skaf-h Linked Data Stack (Semantic Web Cake)

More information

Today: RDF syntax. + conjunctive queries for OWL. KR4SW Winter 2010 Pascal Hitzler 3

Today: RDF syntax. + conjunctive queries for OWL. KR4SW Winter 2010 Pascal Hitzler 3 Today: RDF syntax + conjunctive queries for OWL KR4SW Winter 2010 Pascal Hitzler 3 Today s Session: RDF Schema 1. Motivation 2. Classes and Class Hierarchies 3. Properties and Property Hierarchies 4. Property

More information

RDF AND SPARQL. Part I: Basics of RDF. Dresden, August Sebastian Rudolph ICCL Summer School

RDF AND SPARQL. Part I: Basics of RDF. Dresden, August Sebastian Rudolph ICCL Summer School RDF AND SPARQL Part I: Basics of RDF Sebastian Rudolph ICCL Summer School Dresden, August 2013 Agenda RDF Motivation URIs RDF data model Syntax for RDF: Turtle and XML Datatypes Multi-Valued Relationships

More information

Linking Data with RDF

Linking Data with RDF Linking Data with RDF Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2014/15 This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

Web Science & Technologies University of Koblenz Landau, Germany RDF. Steffen Staab. Semantic Web

Web Science & Technologies University of Koblenz Landau, Germany RDF. Steffen Staab. Semantic Web Web Science & Technologies University of Koblenz Landau, Germany RDF RDF Model Resources (Subject, Object) connected by Predicates (relationships) Subject predicate Object 2 RDF model Resources A resource

More information

Analysis Data Transfer Framework "ORIENT" Specification

Analysis Data Transfer Framework ORIENT Specification NPW3C2011-002 Analysis Data Transfer Framework "ORIENT" Specification Revision 1.9 Last update: February 7, 2011 NEC Corporation NEC Corporation 2010 Table of contents 1 Introduction... 5 1.1 Objective...

More information

SEMANTIC WEB 03 RDF DATA MODEL RESOURCE DESCRIPTION FRAMEWORK IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD

SEMANTIC WEB 03 RDF DATA MODEL RESOURCE DESCRIPTION FRAMEWORK IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD SEMANTIC WEB 03 RDF DATA MODEL RESOURCE DESCRIPTION FRAMEWORK IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM MOTIVATION How do you encode the piece of knowledge: or

More information

Making Information Findable

Making Information Findable Making Information Findable CS 510 Spring 2010 1 To Discuss Suppose you create something and wanted to make sure people find in on the Internet. Examples book review house listing scientific data set CS

More information

User and Reference Manual

User and Reference Manual User and Reference Manual User & Reference Manual All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

Graphic technology Extensible metadata platform (XMP) Part 2: Description of XMP schemas using RELAX NG

Graphic technology Extensible metadata platform (XMP) Part 2: Description of XMP schemas using RELAX NG INTERNATIONAL STANDARD ISO 16684-2 First edition 2014-12-01 Graphic technology Extensible metadata platform (XMP) Part 2: Description of XMP schemas using RELAX NG Technologie graphique Plate-forme de

More information

Semantic Web Technologies

Semantic Web Technologies 1/57 Introduction and RDF Jos de Bruijn debruijn@inf.unibz.it KRDB Research Group Free University of Bolzano, Italy 3 October 2007 2/57 Outline Organization Semantic Web Limitations of the Web Machine-processable

More information

Contents. RDF Resource Description Framework. A Graph Model for KR

Contents. RDF Resource Description Framework. A Graph Model for KR Contents RDF Resource Description Framework G. Falquet 2014 The RDF graph model RDF in XML and N3 Blank nodes Representing collections Adding some structure: RDF schemas Classes, subclasses, properties,

More information

Chapter 3 RDF Syntax

Chapter 3 RDF Syntax Chapter 3 RDF Syntax RDF Overview l RDF Syntax -- the XML encoding l RDF Syntax variations including N3 l RDF Schema (RDFS) l Semantics of RDF and RDFS Axiomatic Semantics Operational semantics based on

More information

Web Science & Technologies University of Koblenz Landau, Germany. RDF Schema. Steffen Staab. Semantic Web

Web Science & Technologies University of Koblenz Landau, Germany. RDF Schema. Steffen Staab. Semantic Web Web Science & Technologies University of Koblenz Landau, Germany RDF Schema RDF Schemas Describe rules for using RDF properties Are expressed in RDF Extends original RDF vocabulary Are not to be confused

More information

RDF Schema. Mario Arrigoni Neri

RDF Schema. Mario Arrigoni Neri RDF Schema Mario Arrigoni Neri Semantic heterogeneity Standardization: commitment on common shared markup If no existing application If market-leaders can define de-facto standards Translation: create

More information

Knowledge Representation for the Semantic Web

Knowledge Representation for the Semantic Web Knowledge Representation for the Semantic Web Winter Quarter 2011 Pascal Hitzler Slides 4 01/13/2010 Kno.e.sis Center Wright State University, Dayton, OH http://www.knoesis.org/pascal/ KR4SW Winter 2011

More information

Semantic Web. RDF and RDF Schema. Morteza Amini. Sharif University of Technology Spring 90-91

Semantic Web. RDF and RDF Schema. Morteza Amini. Sharif University of Technology Spring 90-91 بسمه تعالی Semantic Web RDF and RDF Schema Morteza Amini Sharif University of Technology Spring 90-91 Outline Metadata RDF RDFS RDF(S) Tools 2 Semantic Web: Problems (1) Too much Web information around

More information

Integration of resources on the World Wide Web using XML

Integration of resources on the World Wide Web using XML Brouillon d article pour les Cahiers GUTenberg n?? 14 mars 2000 1 Integration of resources on the World Wide Web using XML Roberta Faggian CERN, Genève, Suisse Abstract. An initiative to explain High Energy

More information

Simplified RDF Syntax for Power System Model Exchange

Simplified RDF Syntax for Power System Model Exchange Simplified RDF Syntax for Power System Model Exchange Arnold devos, Langdale Consultants adv@langdale.com.au Revision 2 2000-10-04 Initial Release Revision 4 2000-10-05 Corrections. Example added. Revision

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information

Chapter 13: Advanced topic 3 Web 3.0

Chapter 13: Advanced topic 3 Web 3.0 Chapter 13: Advanced topic 3 Web 3.0 Contents Web 3.0 Metadata RDF SPARQL OWL Web 3.0 Web 1.0 Website publish information, user read it Ex: Web 2.0 User create content: post information, modify, delete

More information

RDF. Dr. Mustafa Jarrar. Knowledge Engineering (SCOM7348) University of Birzeit

RDF. Dr. Mustafa Jarrar. Knowledge Engineering (SCOM7348) University of Birzeit Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) RDF Dr. Mustafa Jarrar University of Birzeit mjarrar@birzeit.edu

More information

SWAD-Europe Deliverable 8.1 Core RDF Vocabularies for Thesauri

SWAD-Europe Deliverable 8.1 Core RDF Vocabularies for Thesauri Mon Jun 07 2004 12:07:51 Europe/London SWAD-Europe Deliverable 8.1 Core RDF Vocabularies for Thesauri Project name: Semantic Web Advanced Development for Europe (SWAD-Europe) Project Number: IST-2001-34732

More information

Semantic Web Engineering

Semantic Web Engineering Semantic Web Engineering Gerald Reif reif@ifi.unizh.ch Fr. 10:15-11:45, Room 2.A.10 The Resource Description Framework RDF Trust Proof Logic Ontology vocabulary RDF + RDF Schema XML + NS + XML Schema Unicode

More information

RDF Graph Data Model

RDF Graph Data Model Mustafa Jarrar: Lecture Notes on RDF Data Model Birzeit University, 2018 Version 7 RDF Graph Data Model Mustafa Jarrar Birzeit University 1 Watch this lecture and download the slides Course Page: http://www.jarrar.info/courses/ai/

More information

Sam Oh, Professor, Sungkyunkwan University LIS

Sam Oh, Professor, Sungkyunkwan University LIS Sam Oh, Professor, Sungkyunkwan University LIS Affiliate Professor, University of Washington, ischool ISO/IEC JTC1/SC34 Chair, ISO TC46/SC9 Chair, DCMI Oversight Committee Member Jinho Park, NLK Senior

More information

Multi-agent and Semantic Web Systems: RDF Data Structures

Multi-agent and Semantic Web Systems: RDF Data Structures Multi-agent and Semantic Web Systems: RDF Data Structures Fiona McNeill School of Informatics 31st January 2013 Fiona McNeill Multi-agent Semantic Web Systems: RDF Data Structures 31st January 2013 0/25

More information

RSS - VERSION 1.0 TAGS AND SYNTAX

RSS - VERSION 1.0 TAGS AND SYNTAX RSS - VERSION 1.0 TAGS AND SYNTAX http://www.tutorialspoint.com/rss/rss1.0-tag-syntax.htm Copyright tutorialspoint.com Here is the structure of an RSS 1.0 document:

More information

Metadata Standards and Applications. 4. Metadata Syntaxes and Containers

Metadata Standards and Applications. 4. Metadata Syntaxes and Containers Metadata Standards and Applications 4. Metadata Syntaxes and Containers Goals of Session Understand the origin of and differences between the various syntaxes used for encoding information, including HTML,

More information

SEMANTIC WEB 04 RDF SYNTAX TURTLE, RDF/XML, N-TRIPLES, N3 IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD

SEMANTIC WEB 04 RDF SYNTAX TURTLE, RDF/XML, N-TRIPLES, N3 IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD SEMANTIC WEB 04 RDF SYNTAX TURTLE, RDF/XML, N-TRIPLES, N3 IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM INTRODUCTION Problem: What does an XML document mean? XML is about

More information

PRISM: Publishing Requirements for Industry Standard Metadata. PRISM Specification: Modular: Version 2.0. PRISM Compliance FINAL

PRISM: Publishing Requirements for Industry Standard Metadata. PRISM Specification: Modular: Version 2.0. PRISM Compliance FINAL PRISM: Publishing Requirements for Industry Standard Metadata PRISM Specification: Modular: Version 2.0 PRISM Compliance FINAL 2008 02 19 Copyright and Legal Notices Copyright (c) International Digital

More information

The Resource Description Framework and its Schema

The Resource Description Framework and its Schema The Resource Description Framework and its Schema Fabien Gandon, Reto Krummenacher, Sung-Kook Han, Ioan Toma To cite this version: Fabien Gandon, Reto Krummenacher, Sung-Kook Han, Ioan Toma. The Resource

More information

An RDF-based Distributed Expert System

An RDF-based Distributed Expert System An RDF-based Distributed Expert System NAPAT PRAPAKORN*, SUPHAMIT CHITTAYASOTHORN** Department of Computer Engineering King Mongkut's Institute of Technology Ladkrabang Faculty of Engineering, Bangkok

More information

2. RDF Semantic Web Basics Semantic Web

2. RDF Semantic Web Basics Semantic Web 2. RDF Semantic Web Basics Semantic Web Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences Summer semester 2011 1 Agenda Semantic Web Basics Literature

More information

OSM Lecture (14:45-16:15) Takahira Yamaguchi. OSM Exercise (16:30-18:00) Susumu Tamagawa

OSM Lecture (14:45-16:15) Takahira Yamaguchi. OSM Exercise (16:30-18:00) Susumu Tamagawa OSM Lecture (14:45-16:15) Takahira Yamaguchi OSM Exercise (16:30-18:00) Susumu Tamagawa TBL 1 st Proposal Information Management: A Proposal (1989) Links have the following types: depends on is part of

More information

CS Knowledge Representation and Reasoning (for the Semantic Web)

CS Knowledge Representation and Reasoning (for the Semantic Web) CS 7810 - Knowledge Representation and Reasoning (for the Semantic Web) 02 Resource Description Framework (RDF) Adila Krisnadhi Data Semantics Lab, Wright State University, Dayton, OH Outline 1. Motivation:

More information

White Paper on UAProf Best Practices Guide

White Paper on UAProf Best Practices Guide White Paper on UAProf Best Practices Guide Approved - 18 Jul 2006 Open Mobile Alliance OMA-WP-UAProf_Best_Practices_Guide-20060718-A OMA-WP-UAProf_Best_Practices_Guide-20060718-A Page 2 (19) Use of this

More information

RDF /RDF-S Providing Framework Support to OWL Ontologies

RDF /RDF-S Providing Framework Support to OWL Ontologies RDF /RDF-S Providing Framework Support to OWL Ontologies Rajiv Pandey #, Dr.Sanjay Dwivedi * # Amity Institute of information Technology, Amity University Lucknow,India * Dept.Of Computer Science,BBA University

More information

Web 2.0 Lecture 8: Resource Description Framework

Web 2.0 Lecture 8: Resource Description Framework Web 2.0 Lecture 8: Resource Description Framework doc. Ing. Tomáš Vitvar, Ph.D. tomas@vitvar.com @TomasVitvar http://www.vitvar.com Leopold-Franzens Universität Innsbruck and Czech Technical University

More information

RDF/RuleML Interoperability

RDF/RuleML Interoperability RDF/RuleML Interoperability W3C Workshop on Rule Languages for Interoperability Position Paper, 27-28 April 2005 Authors: Harold Boley 1, Jing Mei 2, Michael Sintek 3, Gerd Wagner 4 1 NRC, 2 PKU, 3 DFKI,

More information

Semistructured Data Management Part 3 (Towards the) Semantic Web

Semistructured Data Management Part 3 (Towards the) Semantic Web Semistructured Data Management Part 3 (Towards the) Semantic Web Semantic Web - 1 1 Today's Question 1. What is the "Semantic Web"? 2. Semantic Annotation using RDF 3. Ontology Languages Semantic Web -

More information

Introduction to metadata cleansing using SPARQL update queries. April 2014 PwC EU Services

Introduction to metadata cleansing using SPARQL update queries. April 2014 PwC EU Services Introduction to metadata cleansing using SPARQL update queries April 2014 PwC EU Services Learning objectives By the end of this module, you will have an understanding of: How to transform your metadata

More information

DCMI Abstract Model - DRAFT Update

DCMI Abstract Model - DRAFT Update 1 of 7 9/19/2006 7:02 PM Architecture Working Group > AMDraftUpdate User UserPreferences Site Page Actions Search Title: Text: AttachFile DeletePage LikePages LocalSiteMap SpellCheck DCMI Abstract Model

More information

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services Contents G52IWS: The Semantic Web Chris Greenhalgh 2007-11-10 Introduction to the Semantic Web Semantic Web technologies Overview RDF OWL Semantic Web Services Concluding comments 1 See Developing Semantic

More information

Validating CC/PP and UAProf Profiles

Validating CC/PP and UAProf Profiles Validating CC/PP and UAProf Profiles Charles Smith 1, Mark H. Butler Information Infrastructure Laboratory HP Laboratories Bristol HPL-2002-268 October 11 th, 2002* E-mail: chasmi@hplb.hpl.hp.com, smithcr@tcd.ie,

More information

Language Specification

Language Specification D2R MAP Language Specification (Work in Progress) Table of Content 1 INTRODUCTION 2 2 LANGUAGE SPECIFICATION 3 2.1 ROOT ELEMENT: MAP 3 2.2 TOP-LEVEL-ELEMENTS 3 2.2.1 DBCONNECTION 3 2.2.2 NAMESPACE 4 2.2.3

More information

RDFS. Suresh Manandhar* & Dimitar Kazakov

RDFS. Suresh Manandhar* & Dimitar Kazakov ARIN KR Lecture 3 RDFS Suresh Manandhar* & Dimitar Kazakov *Several of these slides are based on tutorial by Ivan Herman (W3C) reproduced here with kind permission. All changes and errors are mine. 1 Lecture

More information

Semantic Web and Python Concepts to Application development

Semantic Web and Python Concepts to Application development PyCon 2009 IISc, Bangalore, India Semantic Web and Python Concepts to Application development Vinay Modi Voice Pitara Technologies Private Limited Outline Web Need better web for the future Knowledge Representation

More information

Multi-agent Semantic Web Systems: Data & Metadata

Multi-agent Semantic Web Systems: Data & Metadata Multi-agent Semantic Web Systems: Data & Metadata Ewan Klein School of Informatics MASWS January 26, 2012 Ewan Klein (School of Informatics) Multi-agent Semantic Web Systems: Data & Metadata MASWS January

More information

RDF AND SPARQL. Part III: Semantics of RDF(S) Dresden, August Sebastian Rudolph ICCL Summer School

RDF AND SPARQL. Part III: Semantics of RDF(S) Dresden, August Sebastian Rudolph ICCL Summer School RDF AND SPARQL Part III: Semantics of RDF(S) Sebastian Rudolph ICCL Summer School Dresden, August 2013 Agenda 1 Motivation and Considerations 2 Simple Entailment 3 RDF Entailment 4 RDFS Entailment 5 Downsides

More information

a paradigm for the Semantic Web RDF Data Model Angelica Lo Duca IIT-CNR Linked Open Data:

a paradigm for the Semantic Web RDF Data Model Angelica Lo Duca IIT-CNR Linked Open Data: RDF Data Model Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Motivation How to encode the following piece of knowledge? Theory of

More information

OpenDocument meta data. Florian Reuter

OpenDocument meta data. Florian Reuter OpenDocument meta data Florian Reuter What is RDF? Very roughly: Triples of > Subject > Predicate > Object How are RDF and XML linked? > RDF/XML coding Please note the difference between RDF (subject,

More information

University of Dublin Trinity College. Resource Description Framework (RDF) Melike Şah Direkoğlu

University of Dublin Trinity College. Resource Description Framework (RDF) Melike Şah Direkoğlu University of Dublin Trinity College Resource Description Framework (RDF) Melike Şah Direkoğlu Adapted from course notes of Rob Brennan, TCD, Declan O Sullivan, TCD, Simon Dobson, UCD and Myungjin Lee,

More information

RDF/XML: RDF Data on the Web

RDF/XML: RDF Data on the Web Developing Ontologies have an idea of the required concepts and relationships (ER, UML,...), generate a (draft) n3 or RDF/XML instance, write a separate file for the metadata, load it into Jena with activating

More information

Resource Description Framework (RDF)

Resource Description Framework (RDF) Where are we? Semantic Web Resource Description Framework (RDF) # Title 1 Introduction 2 Semantic Web Architecture 3 Resource Description Framework (RDF) 4 Web of data 5 Generating Semantic Annotations

More information

Semantic Days 2011 Tutorial Semantic Web Technologies

Semantic Days 2011 Tutorial Semantic Web Technologies Semantic Days 2011 Tutorial Semantic Web Technologies Lecture 2: RDF, The Resource Description Framework Martin Giese 7th June 2011 Department of Informatics University of Oslo Outline 1 The RDF data model

More information

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. Date: Tuesday 21st May 2013 Time: 09:45-11:45

Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE. Date: Tuesday 21st May 2013 Time: 09:45-11:45 Two hours UNIVERSITY OF MANCHESTER SCHOOL OF COMPUTER SCIENCE Topics in Advanced Information Retrieval Date: Tuesday 21st May 2013 Time: 09:45-11:45 Please answer any THREE Questions from the FIVE Questions

More information

Ontological Modeling: Part 2

Ontological Modeling: Part 2 Ontological Modeling: Part 2 Terry Halpin LogicBlox This is the second in a series of articles on ontology-based approaches to modeling. The main focus is on popular ontology languages proposed for the

More information

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES Introduction to RDF Sebastian Rudolph Dresden, 11 Apr 2014 Content Overview & XML Introduction into RDF RDFS Syntax & Intuition Tutorial 1 RDFS Semantics RDFS Rule-based

More information

Today s Plan. INF3580 Semantic Technology Spring Outline. My lectures. Lecture 2: RDF, The Resource Description Framework.

Today s Plan. INF3580 Semantic Technology Spring Outline. My lectures. Lecture 2: RDF, The Resource Description Framework. Today s Plan INF3580 Semantic Technology Spring 2010 Lecture 2: RDF, The Resource Description Framework 1 2 Semantic Web architecture Audun Stolpe 3 2nd February 2010 4 Merging graphs Department of Informatics

More information

JENA: A Java API for Ontology Management

JENA: A Java API for Ontology Management JENA: A Java API for Ontology Management Hari Rajagopal IBM Corporation Page Agenda Background Intro to JENA Case study Tools and methods Questions Page The State of the Web Today The web is more Syntactic

More information

D-RDF: Dynamic Resource Description Framework

D-RDF: Dynamic Resource Description Framework Retrospective Theses and Dissertations 2007 D-RDF: Dynamic Resource Description Framework Kamna Jain Iowa State University Follow this and additional works at: http://lib.dr.iastate.edu/rtd Part of the

More information

RDF Schema Sebastian Rudolph

RDF Schema Sebastian Rudolph FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES RDF Schema Sebastian Rudolph Dresden, 12 Apr 2013 Content Overview & XML 9 APR DS2 Hypertableau II 7 JUN DS5 Introduction into RDF 9 APR DS3 Tutorial 5 11 JUN DS2

More information

Short notes about OWL 1

Short notes about OWL 1 University of Rome Tor Vergata Short notes about OWL 1 Manuel Fiorelli fiorelli@info.uniroma2.it [1] this presentation is limited to OWL 1 features. A new version of OWL (OWL 2), which adds further features

More information

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES Semantics of RDF(S) Sebastian Rudolph Dresden, 25 April 2014 Content Overview & XML Introduction into RDF RDFS Syntax & Intuition Tutorial 1 RDFS Semantics RDFS

More information

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES Semantics of RDF(S) Sebastian Rudolph Dresden, 16 April 2013 Agenda 1 Motivation and Considerations 2 Simple Entailment 3 RDF Entailment 4 RDFS Entailment 5 Downsides

More information

Multi-agent Semantic Web Systems: RDF Models

Multi-agent Semantic Web Systems: RDF Models ... Multi-agent Semantic Web Systems: RDF Models Ewan Klein School of Informatics January 30, 2012 Ewan Klein (School of Informatics) Multi-agent Semantic Web Systems: RDF Models January 30, 2012 1 / 33

More information

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall The Semantic Web Revisited Nigel Shadbolt Tim Berners-Lee Wendy Hall Today sweb It is designed for human consumption Information retrieval is mainly supported by keyword-based search engines Some problems

More information

Semantic Web Knowledge Representation in the Web Context. CS 431 March 24, 2008 Carl Lagoze Cornell University

Semantic Web Knowledge Representation in the Web Context. CS 431 March 24, 2008 Carl Lagoze Cornell University Semantic Web Knowledge Representation in the Web Context CS 431 March 24, 2008 Carl Lagoze Cornell University Acknowledgements for various slides and ideas Ian Horrocks (Manchester U.K.) Eric Miller (W3C)

More information

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham

Semantics. Matthew J. Graham CACR. Methods of Computational Science Caltech, 2011 May 10. matthew graham Semantics Matthew J. Graham CACR Methods of Computational Science Caltech, 2011 May 10 semantic web The future of the Internet (Web 3.0) Decentralized platform for distributed knowledge A web of databases

More information

TRIPLE An RDF Query, Inference, and Transformation Language

TRIPLE An RDF Query, Inference, and Transformation Language TRIPLE An RDF Query, Inference, and Transformation Language Michael Sintek sintek@dfki.de DFKI GmbH Stefan Decker stefan@db.stanford.edu Stanford University Database Group DDLP'2001 Tokyo, Japan, October

More information

RDF Schema Sebastian Rudolph

RDF Schema Sebastian Rudolph FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES RDF Schema Sebastian Rudolph RDF Schema TU Dresden Foundations of Semantic Web Technologies slide 2 of 53 RDF Schema TU Dresden Foundations of Semantic Web Technologies

More information

Part II. Representation of Meta-Information

Part II. Representation of Meta-Information Part II Representation of Meta-Information 43 As we have seen in Chapter 3, quality-based information filtering policies rely on different types of meta-information about information itself, the information

More information

Exploring the Relationship Between FOHM and RDF

Exploring the Relationship Between FOHM and RDF Exploring the Relationship Between FOHM and RDF Nicholas Gibbins, Steve Harris, Danius T. Michaelides, David E. Millard, Mark J. Weal July 28, 2003 Abstract One of the results of the Open Hypermedia work

More information

8/24/2010. Internet. Advanced databases and data models: Theme1: Semi structured data. What is the problem? In this course:

8/24/2010. Internet. Advanced databases and data models: Theme1: Semi structured data. What is the problem? In this course: Advanced databases and data models: Theme1: Semi structured data Internet Lena Strömbäck June 17, 2009 1 What is the problem? In this course: The user s effort is not enough for the task The data describes

More information

A Metadata Model for Electronic Images

A Metadata Model for Electronic Images A Metadata Model for Electronic Images Regina M. Mathis Nova Southeastern University mregina@nova.edu Lucinda Caughey Nova Southeastern University caughey@nova.edu Abstract Finding images over the internet

More information

Opus: University of Bath Online Publication Store

Opus: University of Bath Online Publication Store Patel, M. (2002) Metadata vocabularies and ontologies. In: Ontologies & Communications Working Group Meeting, Agentcities Information Day 2, 2002-09-09-2002-09-10, Lisbon. Link to official URL (if available):

More information

Logic and Reasoning in the Semantic Web (part I RDF/RDFS)

Logic and Reasoning in the Semantic Web (part I RDF/RDFS) Logic and Reasoning in the Semantic Web (part I RDF/RDFS) Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline

More information

Semantic Web. MPRI : Web Data Management. Antoine Amarilli Friday, January 11th 1/29

Semantic Web. MPRI : Web Data Management. Antoine Amarilli Friday, January 11th 1/29 Semantic Web MPRI 2.26.2: Web Data Management Antoine Amarilli Friday, January 11th 1/29 Motivation Information on the Web is not structured 2/29 Motivation Information on the Web is not structured This

More information

2. Knowledge Representation Applied Artificial Intelligence

2. Knowledge Representation Applied Artificial Intelligence 2. Knowledge Representation Applied Artificial Intelligence Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences 1 Retrospective Introduction to AI What

More information

H1 Spring B. Programmers need to learn the SOAP schema so as to offer and use Web services.

H1 Spring B. Programmers need to learn the SOAP schema so as to offer and use Web services. 1. (24 points) Identify all of the following statements that are true about the basics of services. A. If you know that two parties implement SOAP, then you can safely conclude they will interoperate at

More information

Multi-agent and Semantic Web Systems: Querying

Multi-agent and Semantic Web Systems: Querying Multi-agent and Semantic Web Systems: Querying Fiona McNeill School of Informatics 11th February 2013 Fiona McNeill Multi-agent Semantic Web Systems: Querying 11th February 2013 0/30 Contents This lecture

More information

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015 Library of Congress BIBFRAME Pilot NOTSL Fall Meeting October 30, 2015 THE BIBFRAME EDITOR AND THE LC PILOT The Semantic Web and Linked Data : a Recap of the Key Concepts Learning Objectives Describe the

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2017/18 Vedran Sabol with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz December 11 th 2017 Overview What is Semantic

More information

An Introduction to the Semantic Web. Jeff Heflin Lehigh University

An Introduction to the Semantic Web. Jeff Heflin Lehigh University An Introduction to the Semantic Web Jeff Heflin Lehigh University The Semantic Web Definition The Semantic Web is not a separate Web but an extension of the current one, in which information is given well-defined

More information

KDI RDF. Fausto Giunchiglia and Mattia Fumagallli. University of Trento

KDI RDF. Fausto Giunchiglia and Mattia Fumagallli. University of Trento KDI RDF Fausto Giunchiglia and Mattia Fumagallli University of Trento Roadmap Title (font gill sans MT) XML From HTML to XML Similarities and differences XML features and limits RDF Syntax Language and

More information

Applications and Technologies on top of XML. Semantic Web - RDF. Extensible Markup Language (XML) Revisited. Outline

Applications and Technologies on top of XML. Semantic Web - RDF. Extensible Markup Language (XML) Revisited. Outline Applications and Technologies on top of XML Semantic Web - RDF Prof. Dr. Dipl.-Inf. Med. Bernhard Tausch ISWeb Lecture Semantic Web (1) ISWeb Lecture Semantic Web (2) Outline Motivation: Why XML is not

More information

What's New in RDF 1.1

What's New in RDF 1.1 What's New in RDF 1.1 SemTechBiz June 2013 http://www.w3.org/2013/talks/0603-rdf11 Sandro Hawke, W3C Staff sandro@w3.org @sandhawke Overview 1. Stability and Interoperability 2. Non-XML Syntaxes Turtle

More information

Chapter 2 AN INTRODUCTION TO THE OWL WEB ONTOLOGY LANGUAGE 1. INTRODUCTION. Jeff Heflin Lehigh University

Chapter 2 AN INTRODUCTION TO THE OWL WEB ONTOLOGY LANGUAGE 1. INTRODUCTION. Jeff Heflin Lehigh University Chapter 2 AN INTRODUCTION TO THE OWL WEB ONTOLOGY LANGUAGE Jeff Heflin Lehigh University Abstract: Key words: 1. INTRODUCTION The OWL Web Ontology Language is an international standard for encoding and

More information