RDF Schema. Philippe Genoud, UFR IM2AG, UGA Manuel Atencia Arcas, UFR SHS, UGA

Size: px
Start display at page:

Download "RDF Schema. Philippe Genoud, UFR IM2AG, UGA Manuel Atencia Arcas, UFR SHS, UGA"

Transcription

1 RDF Schema Philippe Genoud, UFR IM2AG, UGA Manuel Atencia Arcas, UFR SHS, UGA 1

2 RDF Schema (RDF-S) Introduc)on Classes in RDF- S Proper@es in RDF- S Interpreta@on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 2

3 Limitations of RDF RDF provides a standard way to make simple statements about web resources using named proper@es and values but with RDF we cannot express knowledge about proper@es and classes of resources, like, for example: that there exists a generaliza@on/specializa@on rela@onship between two classes that there exists a generaliza@on/specializa@on rela@onship between two proper@es that the subjects of a given property are of a par@cular type that the values of a given property are of a par@cular type 3

4 RDF Schema (RDF-S) W3C, T Berners-Lee, Ivan Herman 4

5 RDF Schema (RDF-S) Officially: "RDF Vocabulary Language" the term "Schema" has been kept for historical reasons à provides to user the possibility of defining vocabularies of terms) that they can later use inside RDF statements à an RDF vocabulary: class statements, property statements and between them à called ontologies 5

6 RDF Schema (RDF-S) RDF- S provides a type system for RDF in a way similar to type systems of object- oriented programming languages like Java classes ó types a[ributes ó proper@es instances ó resources inheritance ó hierarchical organiza@on of types but RDF- S is a descrip@on language, not a programming language: no methods 6

7 RDF Schema (RDF-S) RDF- S extends RDF with a schema vocabulary that allows defining the terms of specific vocabularies and the rela@ons between them. W3C recommenda@on : RDF Vocabulary Descrip@on Language h[p:// schema/ The RDF- S schema vocabulary is itself provided in the form of an RDF vocabulary Resources in the RDF Schema vocabulary are referred to by URIs with the namespace rdfs: schema# Examples of RDFS resources: rdfs:domain, rdfs:range, rdfs:class, rdfs:subclassof, rdfs:subpropertyof Seman@cs gives "extra meaning" to these par@cular proper@es and classes specifies how terms should be interpreted allows to draw inferences 7

8 RDF Schema (RDF-S) Vocabulary (schemas) wri[en in the RDF- S language are legal RDF graphs. any sobware that can process RDF can also interpret a RDF- S schema as a legal RDF graph but must be extended to understand the addi@onal built- in meanings of the RDF Schema terms. 8

9 RDF Schema (RDF-S) Classes in RDF- S Proper@es in RDF- S Interpreta@on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 9

10 Classes in RDF-S A class is a set of objects/individuals sharing certain characteris@cs. A class is any resource declared to be of type rdfs:class using the property rdf:type. ex:motorvehicle rdf:type rdfs:class. Remember: the property rdf:type is used to state that a resource is an instance of a class. ex:van123 rdf:type ex:motorvehicle. rdfs:class rdf:type rdfs:class. The resource rdfs:class refers to the class of all RDF classes. 10

11 Classes in RDF-S A resource may be instance of more than one class. ex:motorvehicle rdf:type rdfs:class. ex:fourwheelvehicle rdf:type rdfs:class. ex:van123 rdf:type ex:motorvehicle ; rdf:type ex:fourwheelvehicle. The specializa@on rela@onship between two classes is described using the predefined rdfs:subclassof property. ex:motorvehicle rdf:type rdfs:class. ex:van rdf:type rdfs:class; rdfs:subclassof ex:motorvehicle. ex:truck rdf:type rdfs:class; rdfs:subclassof ex:motorvehicle. 11

12 Classes in RDF-S of rdfs:subclassof: each instance of the subclass must be an instance of the superclass. ex:vehicle rdf:type rdfs:class. ex:motorvehicle rdf:type rdfs:class ; rdfs:subclassof ex:vehicle. ex:van rdf:type rdfs:class; rdfs:subclassof ex:motorvehicle. 12

13 Classes in RDF-S è ex:van123 is an instance of ex:van and also an instance of ex:motorvehicle ex:motorvehicle rdfs:subclassof ex:van123 rdf:type ex:van ex:van123 rdf:type ex:motorvehicle. this triple is not in the original RDF data but it can be inferred from the of rdfs:subclassof RDFS environments will return this triple 13

14 Inference The of RDF and RDF- S can be given in the form entailment rules. The RDF Seman@cs document has a list of 33 entailment rules: "if such triples are in the graph, add this other triple" do it recursively un@l the graph does not change. The relevant rule for our example: If: uuu rdfs:subclassof xxx. vvv rdf:type uuu. Then add: vvv rdf:type xxx.

15 A class may be a subclass of more than one class. Classes in RDF-S ex:motorvehicle rdf:type rdfs:class. ex:passengervehicle rdf:type rdfs:class ; rdfs:subclassof ex:motorvehicle. ex:van rdf:type rdfs:class, rdfs:subclassof ex:motorvehicle. ex:truck rdf:type rdfs:class; rdfs:subclassof ex:motorvehicle. ex:minivan rdf:type rdfs:class ; rdfs:subclassof ex:van, ex:passengervehicle. 15

16 RDF Schema (RDF-S) Classes in RDF- S Proper)es in RDF- S Interpreta@on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 16

17 Properties in RDF-S All are described as instances of the class rdf:property. This class denotes the class of all RDF- S proper@es rdfs:domain, rdfs:range, and rdfs:subpropertyof describe how proper@es and classes are intended to be used together in RDF data. rdfs:domain specifies the type of all individuals that are the subject of statements using the described property. rdfs:range specifies the type of all individuals or the datatype of all literals that are the object of statements using the described property. 17

18 Properties in RDF-S example of property with a domain and range: ex:person rdf:type rdfs:class. ex:book rdf:type rdfs:class. ex:author rdf:type rdf:property ; rdfs:domain ex:book ; rdfs:range ex:person. ex:semanticwebfordummies ex:author ex:jeffpollock. ex:semanticwebfordummies rdf:type ex:book. ex:jeffpollock rdf:type ex:person. example of a property with a datatype range: ex:price rdf:type rdf:property ; rdfs:range xsd:integer. 18

19 Properties in RDF-S A property may have zero, one or more than one range declara@ons. 0 declara@ons: nothing is said about the values of the property. Anything (resource or literal) can be used as object of the property. 1 declara@on: this says that the objects of the property are instances (resp. literals) of the given class (resp. datatype) more than 1 declara@on: this says that the objects of the property are instances (resp. literals) of all classes (resp. datatypes) specified in the range declara@ons. ex:hasmother rdfs:range ex:female ; rdfs:range ex:person. exstaff:frank ex:hasmother exstaff:frances. must be both an instance of ex:female and of ex:person. 19

20 Properties in RDF-S A property can have zero, one or more than one domain declara@ons. 0 declara@ons: nothing is said about the subjects of the property. Any resource can be used as a subject of the property. 1 declara@ons: this says that the subjects of the property are instances of the given class. more than 1 declara@on: this says that the subjects of the property are instances of all classes specified in the domain declara@ons. ex:ismotherof rdfs:domain ex:female ; rdfs:domain ex:person. exstaff:frances ex:ismotherof exstaff:frank. must be both an instance of ex:female and of ex:person. 20

21 Properties in RDF-S the predefined rdf:subpropertyof property allows describing between property1 rdfs:subpropertyof property2. this means that property1 is a specializa@on of property2 then any two resources related using property1 are implicitly related by property2 ex:driver rdf:type rdf:property. ex:primarydriver rdf:type rdf:property. ex:primarydriver rdfs:subpropertyof ex:driver. exstaff:fred ex:primarydriver ex:companyvan exstaff:fred ex:driver ex:companyvan 21

22 Properties in RDF-S A property may be a subproperty of zero, one or more proper@es All RDF- S rdfs:range and rdfs:domain proper@es that apply to an RDF property will also apply to each of its subproper@es. ex:driver rdf:type rdf:property.; rdf:range ex:person ; rdf:domain ex:vehicle. ex:primarydriver rdf:type rdf:property ; rdfs:subpropertyof ex:driver. exstaff:fred ex:primarydriver ex:companyvan. exstaff:fred ex:driver ex:companyvan. exstaff:fred rdf:type ex:person. ex:companyvan rdf:type ex:vehicle. 22

23 Properties in RDF-S by default are defined independently from class ex:hasparent a rdf:property. ex:human a rdfs:class. hasparent has a global scope an can be used to describe instances of any class ex:john a ex:human; ex:hasparent ex:mary. ex:dog a rdfs:class. ex:daisy a ex:dog; ex:hasparent ex:amber. ex:book a rdfs:class. ex:semwebfordummies a ex:book; ex:hasparent ex:jeff. this flexibility facilitates the use of proper@es in situa@ons that might not have been an@cipated in the original descrip@on but proper@es can be miss- applied in inappropriate situa@ons 23

24 Properties in RDF-S with rdfs:domain et rdfs:range you can restrict the use of ex:hasparent a rdf:property. ; rdfs:domain ex:human; rdfs:range ex:human. ex:john a ex:human; ex:hasparent ex:mary.... but this introduces inflexibility and should be used with cau@on ex:daisy a ex:dog. ex:mary ex:hasparent ex:daisy. à ex:daisy is a Dog and a Human! any range defined for an RDF property applies to all uses of the property In RDF- S, it is not possible to define a specific property as having locally- different ranges depending on the class of the resource it is applied to. 24

25 Properties in RDF-S ex:livingorganism a rdfs:class. ex:human a rdfs:class. ; rdfs:subclassof ex:livingorganism. ex:dog ex:cat a rdfs:class. ; rdfs:subclassof ex:livingorganism. a rdfs:class. ; rdfs:subclassof ex:livingorganism. ex:hasparent a rdf:property; rdfs:domain??????; ex:livingorganism ; rdfs:range ex:livingorganism??????.. Not enough : a person could have a dog/car as parent ex:hashumanparent a rdf:property; rdfs:subpropertyof ex:hasparent ; rdfs:domain ex:human ; rdfs:range ex:human. Add new proper@es specializing hasparent ex:hascatparent a rdf:property ; rdfs:subpropertyof ex:hasparent ;... 25

26 RDF Schema (RDF-S) Classes in RDF- S Proper@es in RDF- S Interpreta)on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 26

27 Interpretation of RDF-S statements RDF- S descrip@ons are not (necessarily) prescrip2ve like OOP languages are. OOP Language (Java) public Class Person{ private String name; } Person(String name) { this.name = name; } every instance of Person has a property (a[ribute) name and this a[ribute is unique every instance of Person has no other property than name RDF- S ex:person a rdfs:class. ex:hasname a rdf:property; rfs:domain ex:person; rdfs:range xsd:string; ex:john a ex:person; ex:hasname "Johnny Defool". it may have mul@ple values ex:john ex:hasname "Johnny". it may have other proper@es ex:john foaf:knows ex:mary. the property is not mandatory for instances of Person ex:paul a ex:person ; foaf:name "Paul White". RDF- S doesn't prescribe how the statements should be used by an 27 applica@on

28 RDF Schema (RDF-S) Classes in RDF- S Proper@es in RDF- S Interpreta@on of RDF- S statements Descrip)on of classes and proper)es RDF and RDFS in RDFS Conclusion 28

29 Description of classes and properties rdfs:label and rdfs:comment : allow a[aching labels and comments to classes and proper@es, or, in general, any kind of resource; their values are strings (literals); they are meant to be read by humans. rdfs:seealso : allows linking two resources that are related some way (e.g. the object resource provides addi@onal informa@on about subject resource); typically used in seman@c networks. rdfs:isdefinedby : used to indicate a resource defining the subject resource; typically used to specify the URI of the RDF vocabulary in which the subject resource is described. 29

30 RDF Schema (RDF-S) Classes in RDF- S Proper@es in RDF- S Interpreta@on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 30

31 RDF and RDF-S in RDF-S RDF(S) Core classes: rdfs:resource, rdfs:class, rdfs:literal, rdf:property, rdf:statement Core proper)es for defining rela)onships: rdf:type, rdfs:subclassof, rdfs:subpropertyof Core proper)es for restric)ng proper)es: rdfs:domain, rdfs:range Reifica)on proper)es: rdf:subject, rdf:predicate, rdf:object Container classes: rdf:bag, rdf:seq, rdf:alt, rdfs:container U)lity proper)es: rdfs:seealso, rdfs:isdefinedby, rdfs:comment, rdfs:label 31

32 RDF and RDF-S in RDF-S RDF are defined using RDF- S (RDF rdf: < rdf- syntax- rdfs: < schema#>. rdf:type a rdfs:property ; rdfs:isdefinedby < rdf- syntax- ns#> ; rdfs:label "type"; rdfs:comment "The subject is an instance of a class." ; rdfs:range rdfs:class ; rdfs:domain rdfs:resource. 32

33 RDF and RDF-S in RDF-S RDF- S primi@ves are defined using RDF- S (RDF- S rdf: < rdf- syntax- rdfs: < schema#>. rdfs:resource rdf:type rdfs:class ; rdfs:isdefinedby < schema#> ; rdfs:label "Resource" ; rdfs:comment "The class resource, everything". rdfs:subclassof rdf:type rdfs:property ; rdfs:isdefinedby < schema#> ; rdfs:label "subclassof" ; rdfs:comment "The subject is a subclass of a class." ; rdfs:domain rdfs:class ; rdfs:range rdfs:class. This only says that rdfs:subclassof applies to classes and has a class as a a value. The namespaces do not provide the full defini@on of RDF and RDF- S. This is completed with the formal seman@cs based on entailment rules (see next chapters). 33

34 Exercise Give the RDF- S defini@ons of rdfs:domain and rdfs:range proper@es the reifica@on vocabulary (rdf:statement, rdf:predicate, rdf:subject and rdf:object) 34

35 RDF Schema (RDF-S) Classes in RDF- S Proper@es in RDF- S Interpreta@on of RDF- S statements Descrip@on of classes and proper@es RDF and RDF- S in RDF- S Conclusion 35

36 What does RDF-S give us? RDF A mechanism for publishing data. Single (simple) data model. Syntac@c consistency between names (IRIs). Low level integra@on of data. Mash the graphs together and we re done. RDF- S Ability to use simple schema/vocabularies when describing our resources. Consistent vocabulary use and sharing. Basic inference. 36

37 Limitations of RDF-S RDF- S is too weak to describe resources in sufficient detail. No localized range and domain constraints Can t say that the range of hasparent is Person when applied to Persons and Dog when applied to Dogs. No existence/cardinality constraints. Can't say that all instances of Person have a mother that is also a Person, or that Persons have exactly 2 parents. No transi)ve, inverse or symmetrical proper@es Can't say that ispartof is a transi@ve property, that haspart is the inverse of ispartof or that touches is symmetrical. 37

LECTURE 09 RDF: SCHEMA - AN INTRODUCTION

LECTURE 09 RDF: SCHEMA - AN INTRODUCTION SEMANTIC WEB LECTURE 09 RDF: SCHEMA - AN INTRODUCTION IMRAN IHSAN ASSISTANT PROFESSOR AIR UNIVERSITY, ISLAMABAD THE SEMANTIC WEB LAYER CAKE 2 SW S16 09- RDFs: RDF Schema 1 IMPORTANT ASSUMPTION The following

More information

Semantic Web Engineering

Semantic Web Engineering Semantic Web Engineering Gerald Reif reif@ifi.unizh.ch Fr. 10:15-12:00, Room 2.A.10 RDF Schema Trust Proof Logic Ontology vocabulary RDF + RDF Schema XML + NS + XML Schema Unicode URI Digital Signature

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

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

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

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

Seman&cs)of)RDF) )S) RDF)seman&cs)1)Goals)

Seman&cs)of)RDF) )S) RDF)seman&cs)1)Goals) Seman&cs)of)RDF) )S) Gilles Falquet Semantic Web Technologies 2013 G. Falquet - CUI) RDF)Seman&cs) 1) RDF)seman&cs)1)Goals) Evaluate the truth of a triple / graph Characterize the state of the world that

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

SEMANTIC WEB 05 RDF SCHEMA MODELLING SEMANTICS IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD

SEMANTIC WEB 05 RDF SCHEMA MODELLING SEMANTICS IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD SEMANTIC WEB 05 RDF SCHEMA MODELLING SEMANTICS IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM INTRODUCTION RDF has a very simple data model RDF Schema (RDFS) enriches the

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

Chapter 3. RDF Schema

Chapter 3. RDF Schema Chapter 3 RDF Schema Introduction l RDF has a very simple data model l RDF Schema (RDFS) enriches the data model, adding vocabulary & associated semantics for Classes and es Properties and sub-properties

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

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

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

RDF Semantics A graph-based approach

RDF Semantics A graph-based approach RDF Semantics A graph-based approach Jean-François Baget INRIA Rhône-Alpes Jean-Francois.Baget@inrialpes.fr Manchester Knowledge Web Meeting Sept. 27 29, 2004 RDF Syntax (1) Triples Subject Property Object

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

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

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

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 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

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) 04 - RDF Semantics Adila Krisnadhi Data Semantics Lab Wright State University, Dayton, OH September 13, 2016 Adila Krisnadhi (Data

More information

RDF and RDF Schema. Resource Description Framework

RDF and RDF Schema. Resource Description Framework RDF and RDF Schema Resource Description Framework Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema RDF Semantics and Reasoning 2019-01-14

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

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

RDF Semantics by Patrick Hayes W3C Recommendation

RDF Semantics by Patrick Hayes W3C Recommendation RDF Semantics by Patrick Hayes W3C Recommendation http://www.w3.org/tr/rdf-mt/ Presented by Jie Bao RPI Sept 4, 2008 Part 1 of RDF/OWL Semantics Tutorial http://tw.rpi.edu/wiki/index.php/rdf_and_owl_semantics

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

Formalising the Semantic Web. (These slides have been written by Axel Polleres, WU Vienna)

Formalising the Semantic Web. (These slides have been written by Axel Polleres, WU Vienna) Formalising the Semantic Web (These slides have been written by Axel Polleres, WU Vienna) The Semantics of RDF graphs Consider the following RDF data (written in Turtle): @prefix rdfs: .

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

Querying RDF & RDFS. Several query languages exist to retrieve

Querying RDF & RDFS. Several query languages exist to retrieve Knowledge management: Querying with SPARQL 1 Querying RDF & RDFS Several query languages exist to retrieve resulting triples from RDF RDQL SERQL SPARQL These languages use triple patterns as input and

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

Mustafa Jarrar: Lecture Notes on RDF Schema Birzeit University, Version 3. RDFS RDF Schema. Mustafa Jarrar. Birzeit University

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

More information

Semantic Web Modeling Languages Part I: RDF

Semantic Web Modeling Languages Part I: RDF Semantic Web Modeling Languages Part I: RDF Markus Krötzsch & Sebastian Rudolph ESSLLI 2009 Bordeaux slides available at http://semantic-web-book.org/page/esslli09_lecture Outline A Brief Motivation RDF

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

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

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

RDF and RDF Schema. Raúl García Castro, Óscar Corcho. Boris

RDF and RDF Schema. Raúl García Castro, Óscar Corcho. Boris RDF and RDF Schema Raúl García Castro, Óscar Corcho Boris Villazón-Terrazas bvillazon@isoco.com @boricles Slides available at: http://www.slideshare.net/boricles/ Index Overview RDF - Introduction - RDF

More information

Semantic Web Services and OOP toward Unified Services

Semantic Web Services and OOP toward Unified Services Semantic Web Services and OOP toward Unified Services Seiji Koide Galaxy Express Corporation OMG Model Driven Architecture Automatic Code Generation And Reverse Engineering Platform Independent Model (PIM)

More information

Building Blocks of Linked Data

Building Blocks of Linked Data Building Blocks of Linked Data Technological foundations Identifiers: URIs Data Model: RDF Terminology and Semantics: RDFS, OWL 23,019,148 People s Republic of China 20,693,000 population located in capital

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

11 The Semantic Web. Knowledge-Based Systems and Deductive Databases Knowledge Representation Knowledge Representation

11 The Semantic Web. Knowledge-Based Systems and Deductive Databases Knowledge Representation Knowledge Representation expressiveness 16.06.2009 11 The Semantic Web Knowledge-Based Systems and Deductive Databases Wolf-Tilo Balke Christoph Lofi Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.de

More information

The Semantic Web. Mansooreh Jalalyazdi

The Semantic Web. Mansooreh Jalalyazdi 1 هو العليم 2 The Semantic Web Mansooreh Jalalyazdi 3 Content Syntactic web XML Add semantics Representation Language RDF, RDFS OWL Query languages 4 History of the Semantic Web Tim Berners-Lee vision

More information

Unit 2 RDF Formal Semantics in Detail

Unit 2 RDF Formal Semantics in Detail Unit 2 RDF Formal Semantics in Detail Axel Polleres Siemens AG Österreich VU 184.729 Semantic Web Technologies A. Polleres VU 184.729 1/41 Where are we? Last time we learnt: Basic ideas about RDF and how

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

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

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

A Fuzzy Semantics for the Resource Description Framework

A Fuzzy Semantics for the Resource Description Framework A Fuzzy Semantics for the Resource Description Framework Mauro Mazzieri and Aldo Franco Dragoni Università Politecnica delle Marche {m.mazzieri, a.f.dragoni}@univpm.it Abstract. Semantic Web languages

More information

Semantic Web. Lectures 7 and 8: RDFS & OWL Knarig Arabshian

Semantic Web. Lectures 7 and 8: RDFS & OWL Knarig Arabshian Semantic Web Lectures 7 and 8: RDFS & OWL Knarig Arabshian Knarig.arabshian@hofstra.edu How can a model help us? Models help people communicate Describe situa4on in a par4cular way that other people can

More information

INF3580/4580 Semantic Technologies Spring 2017

INF3580/4580 Semantic Technologies Spring 2017 INF3580/4580 Semantic Technologies Spring 2017 Lecture 10: OWL, the Web Ontology Language Leif Harald Karlsen 20th March 2017 Department of Informatics University of Oslo Reminders Oblig. 5: First deadline

More information

A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web

A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web 10th International Conference on Information Technology A Technique for Automatic Construction of Ontology from Existing Database to Facilitate Semantic Web Debajyoti Mukhopadhyay, Aritra Banik, Sreemoyee

More information

INF3580 Semantic Technologies Spring 2012

INF3580 Semantic Technologies Spring 2012 INF3580 Semantic Technologies Spring 2012 Lecture 10: OWL, the Web Ontology Language Martin G. Skjæveland 20th March 2012 Department of Informatics University of Oslo Outline Reminder: RDFS 1 Reminder:

More information

RDF. Resource Description Framework

RDF. Resource Description Framework University of Rome Tor Vergata RDF Resource Description Framework Manuel Fiorelli fiorelli@info.uniroma2.it 2 Important dates for RDF 1999 RDF is adopted as a W3C Recommendation 2004 RDF 1.0 The Word Wide

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

Introduction to Semantic Web Databases. Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018

Introduction to Semantic Web Databases. Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018 Introduction to Semantic Web Databases Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018 Semantic Web Motivation Represents the next generation of the the world wide web

More information

Semantic Web Technologies: Web Ontology Language

Semantic Web Technologies: Web Ontology Language Semantic Web Technologies: Web Ontology Language Motivation OWL Formal Semantic OWL Synopsis OWL Programming Introduction XML / XML Schema provides a portable framework for defining a syntax RDF forms

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

OWL 2. Web Ontology Language. Some material adapted from presenta0ons by Ian Horrocks and by Feroz Farazi

OWL 2. Web Ontology Language. Some material adapted from presenta0ons by Ian Horrocks and by Feroz Farazi OWL 2 Web Ontology Language Some material adapted from presenta0ons by Ian Horrocks and by Feroz Farazi Introduc.on OWL 2 extends OWL 1 and is backward compa;ble with it The new features of OWL 2 based

More information

Open Geospatial Consortium Inc.

Open Geospatial Consortium Inc. OGC 09-010 Open Geospatial Consortium Inc. Date: 2009-07-27 Reference number of this OGC project document: OGC 09-010 Version: 0.3.0 Category: OGC Discussion Paper Editor: Kristin Stock OGC Catalogue Services

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

Semantic Information Retrieval: An Ontology and RDFbased

Semantic Information Retrieval: An Ontology and RDFbased Semantic Information Retrieval: An Ontology and RDFbased Model S. Mahaboob Hussain Assistant Professor, CSE Prathyusha Kanakam Assistant Professor, CSE D. Suryanarayana Professor, CSE Swathi Gunnam PG

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

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

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

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

XML-Based Syntax of RDF

XML-Based Syntax of RDF RDF XML-Based Syntax of RDF An RDF document consists of an rdf:rdf element The content of that element is a number of descriptions A namespace mechanism is used Disambiguation Namespaces are expected to

More information

Enabling knowledge representation on the Web by extending RDF Schema

Enabling knowledge representation on the Web by extending RDF Schema Computer Networks 39 (2002) 609 634 www.elsevier.com/locate/comnet Enabling knowledge representation on the Web by extending RDF Schema Jeen Broekstra a, Michel Klein b, *, Stefan Decker c, Dieter Fensel

More information

OWL a glimpse. OWL a glimpse (2) requirements for ontology languages. requirements for ontology languages

OWL a glimpse. OWL a glimpse (2) requirements for ontology languages. requirements for ontology languages OWL a glimpse OWL Web Ontology Language describes classes, properties and relations among conceptual objects lecture 7: owl - introduction of#27# ece#720,#winter# 12# 2# of#27# OWL a glimpse (2) requirements

More information

Chapter 2 Technical Background. Materializing the Web of Linked Data

Chapter 2 Technical Background. Materializing the Web of Linked Data Chapter 2 Technical Background NIKOLAOS KONSTANTINOU DIMITRIOS-EMMANUEL SPANOS Materializing the Web of Linked Data Outline Introduction RDF and RDF Schema Description Logics Querying RDF data with SPARQL

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

Integrating RDF into Hypergraph-Graph (HG(2)) Data Structure

Integrating RDF into Hypergraph-Graph (HG(2)) Data Structure 2013 International Conference on Cloud & Ubiquitous Computing & Emerging Technologies Integrating RDF into Hypergraph-Graph (HG(2)) Data Structure Shiladitya Munshi Ayan Chakraborty Debajyoti Mukhopadhyay

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

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems KNOWLEDGE GRAPHS Lecture 3: Modelling in RDF/Introduction to SPARQL Markus Krötzsch Knowledge-Based Systems TU Dresden, 30th Oct 2018 Review: RDF Graphs The W3C Resource Description Framework considers

More information

Knowledge Management with the WWW

Knowledge Management with the WWW Knowledge Management with the WWW Knowledge management must increasingly deal with Web-based knowledge, but the WWW does not support knowledge management well: Main use by keyword-based search engines

More information

The RDF Schema Specification Revisited

The RDF Schema Specification Revisited Wolfgang Nejdl and Martin Wolpers and Christian Capelle Institut für Technische Informatik Rechnergestützte Wissensverarbeitung Universität Hannover Appelstraße 4, 30167 Hannover {nejdl,wolpers,capelle}@kbs.uni-hannover.de

More information

Introduction to Ontologies

Introduction to Ontologies Introduction to Ontologies Jon Atle Gulla Ontology (from the Greek nominative ὤν: being, genitive ὄντος: of being (participle of εἶναι: to be) and -λογία: science, study, theory) is a study of conceptions

More information

RDF. Resource Description Framework

RDF. Resource Description Framework University of Rome Tor Vergata RDF Resource Description Framework Manuel Fiorelli fiorelli@info.uniroma2.it 2 Important dates for RDF 1999 RDF is adopted as a W3C Recommendation 2004 RDF 1.0 The Word Wide

More information

Developing markup metaschemas to support interoperation among resources with different markup schemas

Developing markup metaschemas to support interoperation among resources with different markup schemas Developing markup metaschemas to support interoperation among resources with different markup schemas Gary Simons SIL International ACH/ALLC Joint Conference 29 May to 2 June 2003, Athens, GA The Context

More information

The RDF layer. Riccardo Rosati. Knowledge Representation and Semantic Technologies

The RDF layer. Riccardo Rosati. Knowledge Representation and Semantic Technologies Knowledge Representation and Semantic Technologies The RDF layer Riccardo Rosati Corso di Laurea Magistrale in Ingegneria Informatica Sapienza Università di Roma 2014/2015 The Semantic Web Tower The RDF

More information

Knowledge Representation RDF Turtle Namespace

Knowledge Representation RDF Turtle Namespace Knowledge Representation RDF Turtle Namespace Jan Pettersen Nytun, UiA 1 URIs Identify Web Resources Web addresses are the most common URIs, i.e., uniform Resource Locators (URLs). RDF resources are usually

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

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

Big Data 14. Graph Databases

Big Data 14. Graph Databases Ghislain Fourny ig Data 14. Graph Databases pinkyone / 123RF Stock Photo tovovan / 123RF Stock Photo 1 Why graph databases? 2 The NoSQL paradigms foo Triple stores bar foobar Key-value stores Column stores

More information

Today s Plan. INF3580 Semantic Technologies Spring Model-theoretic semantics, a quick recap. Outline

Today s Plan. INF3580 Semantic Technologies Spring Model-theoretic semantics, a quick recap. Outline Today s Plan INF3580 Semantic Technologies Spring 2011 Lecture 6: Introduction to Reasoning with RDF 1 Martin Giese 1st March 2010 2 3 Domains, ranges and open worlds Department of Informatics University

More information

Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi

Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi Linguaggi Logiche e Tecnologie per la Gestione Semantica dei testi Outline Brief recap on RDFS+ Using RDFS+ SKOS FOAF Recap RDFS+ includes a subset of the constructs in OWL. It offers more expressive power

More information

Day 2. RISIS Linked Data Course

Day 2. RISIS Linked Data Course Day 2 RISIS Linked Data Course Overview of the Course: Friday 9:00-9:15 Coffee 9:15-9:45 Introduction & Reflection 10:30-11:30 SPARQL Query Language 11:30-11:45 Coffee 11:45-12:30 SPARQL Hands-on 12:30-13:30

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

Linked Data and RDF. COMP60421 Sean Bechhofer

Linked Data and RDF. COMP60421 Sean Bechhofer Linked Data and RDF COMP60421 Sean Bechhofer sean.bechhofer@manchester.ac.uk Building a Semantic Web Annotation Associating metadata with resources Integration Integrating information sources Inference

More information

Introduction to the Semantic Web. Alberto Fernández University Rey Juan Carlos

Introduction to the Semantic Web. Alberto Fernández University Rey Juan Carlos Introduction to the Semantic Web Alberto Fernández University Rey Juan Carlos alberto.fernandez@urjc.es 1 2 1 University Rey Juan Carlos Alcorcón Medicine & Health Sciences Vicálvaro Law & Social Sciences

More information

Semantic Web Ontologies

Semantic Web Ontologies Semantic Web Ontologies CS 431 April 4, 2005 Carl Lagoze Cornell University Acknowledgements: Alun Preece RDF Schemas Declaration of vocabularies classes, properties, and structures defined by a particular

More information

INF3580/4580 Semantic Technologies Spring 2017

INF3580/4580 Semantic Technologies Spring 2017 INF3580/4580 Semantic Technologies Spring 2017 Lecture 9: Model Semantics & Reasoning Martin Giese 13th March 2017 Department of Informatics University of Oslo Today s Plan 1 Repetition: RDF semantics

More information

Semantic Web and Linked Data

Semantic Web and Linked Data Semantic Web and Linked Data Petr Křemen December 2012 Contents Semantic Web Technologies Overview Linked Data Semantic Web Technologies Overview Semantic Web Technology Stack from Wikipedia. http://wikipedia.org/wiki/semantic_web,

More information

OWL Tutorial. LD4P RareMat / ARTFrame Meeting Columbia University January 11-12, 2018

OWL Tutorial. LD4P RareMat / ARTFrame Meeting Columbia University January 11-12, 2018 OWL Tutorial LD4P RareMat / ARTFrame Meeting Columbia University January 11-12, 2018 Outline Goals RDF, RDFS, and OWL Inferencing OWL serializations OWL validation Demo: Building an OWL ontology in Protégé

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

Stream and Complex Event Processing A brief introduc:on to the seman:c Web technologies

Stream and Complex Event Processing A brief introduc:on to the seman:c Web technologies Stream and Complex Event Processing A brief introduc:on to the seman:c Web technologies G. Cugola E. Della Valle A. Margara Politecnico di Milano gianpaolo.cugola@polimi.it emanuele.dellavalle@polimi.it

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

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

Linked Data and RDF. COMP60421 Sean Bechhofer

Linked Data and RDF. COMP60421 Sean Bechhofer Linked Data and RDF COMP60421 Sean Bechhofer sean.bechhofer@manchester.ac.uk Building a Semantic Web Annotation Associating metadata with resources Integration Integrating information sources Inference

More information

University of Dublin Trinity College. RDF Schema and OWL

University of Dublin Trinity College. RDF Schema and OWL University of Dublin Trinity College RDF Schema and OWL RDF Vocabulary Description Language 1.0: RDF Schema Web Ontology Language Adapted from course notes of Rob Brennan, TCD, Declan O Sullivan, TCD and

More information

OWL 2. Introduc.on. Features and Ra.onale. Syntac.c Sugar. Web Ontology Language 4/17/13

OWL 2. Introduc.on. Features and Ra.onale. Syntac.c Sugar. Web Ontology Language 4/17/13 Introduc.on OWL 2 Web Ontology Language OWL 2 extends OWL 1.1 and is backward compa@ble with it The new features of OWL 2 based on real applica@ons, use cases and user experience Adopted as a W3C recommenda@on

More information

RDF Quality Extension for OpenRefine

RDF Quality Extension for OpenRefine Rheinische Friedrich-Wilhelms-Universitát Bonn Institut fúr Informatik III Master Thesis RDF Quality Extension for OpenRefine Author: Muhammad Ali Qasmi Supervisor: Professor Dr. Sóren Auer A thesis submitted

More information