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

Size: px
Start display at page:

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

Transcription

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

2 University Rey Juan Carlos Alcorcón Medicine & Health Sciences Vicálvaro Law & Social Sciences Móstoles Fuenlabrada Polytechnic Information and Communication Sciences 3 Profile: Public University Founded in 1997 >29000 students 4 campus in greater Madrid URJC: Computer Science Studies Degrees Degree in Informatics Engineering Degree in Hardware Engineering Degree in Software Engineering Double Degree in Informatics Engineering + Software Engineering Double Degree in Informatics + Business Administration Double Degree in Informatics Engineering + Mathematics Double Degree in Software Engineering + Mathematics Master/Doctorate Advanced Hardware and Software Systems Graphics, Games and Virtual Reality Interactive Informatics and Multimedia Information Systems Engineering Telematics and Informatics Systems Computer Vision 4 2

3 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 3. Querying the Semantic Web 4. Linked Data 5 The Semantic Web What is the Web? HTTP (how to transfer data) GET /index.htm URI (how to address data) HTML (how to present data to humans) <html> <head> <title>artificial Intelligence Group</title> The problem with the Web Millions of different documents online. Problems: How to find the right documents? How to extract relevant information (from those documents)? How to combine information from different sources? 6 3

4 How to find the right documents? What is the publications page of Tim Berners-Lee? 7 How to extract relevant information? What is a book about the Web? What is the price? 8 4

5 How to combine information? I want the cheapest offer of A Semantic Web Primer 9 How to combine information? I want the cheapest offer of A Semantic Web Primer including shipping costs Several clicks to get the shipping costs Alberto Fernandez Universidad Rey Juan Carlos Tulipan s/n Mostoles Spain 10 5

6 The Semantic Web Solution Instead of natural language publish machine-understandable information Make queries in terms machine-understandable How? Representing knowledge using standardised Ontologíes Semantic Web: the idea of having data on the Web defined and linked in a way that it can be used by machines not just for display purposes, but for automation, integration and reuse of data across various applications [W3C Semantic Web Activity ( 11 Ingeniería del Conocimiento 4º Ingeniería Informática Semantic Web Layered Architecture 12 6

7 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 1. RDF 2. RDF Schema 3. OWL 3. Querying the Semantic Web 4. Linked Data 13 RDF Resource Description Framework W3C Recommentation Data model: semantic net Sentence = triple (Subject, Predicate, Object) Subject: resource (URI) or blank node Predicate/Property: binary relation (URI) Object: URI, literal or blank node 14 7

8 RDF: Example Notation: Turtle < < < < < "August 16, 1999". < < "en". more compact ex: < ex:index.html dc:creator exstaff: ex:index.html exterms:creation-date "August 16, 1999". ex:index.html dc:language "en". 15 RDF: XML syntax. Example <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:dc=" xmlns:exterms=" <rdf:description rdf:about=" <exterms:creation-date>august 16, 1999</exterms:creation-date> </rdf:description> <rdf:description rdf:about=" <dc:language>en</dc:language> </rdf:description> <rdf:description rdf:about=" <dc:creator rdf:resource=" </rdf:description> </rdf:rdf> <rdf:description rdf:about=" <exterms:creation-date>august 16, 1999</exterms:creation-date> <dc:language>en</dc:language> <dc:creator rdf:resource=" </rdf:description> 16 8

9 RDF: Blank Nodes Nodes without URI (no needed) Anonymous resources Independent among each other exstaff:85740 exterms:address _:johnaddress. _:johnaddress exterms:street "1501 Grant Avenue". _:johnaddress exterms:city "Bedford". _:johnaddress exterms:state "Massachusetts". _:johnaddress exterms:postalcode "01730". 17 RDF: Literals Data Types The only predefined data types is rdf:xmlliteral Recommendation: XML Schema datatypes (xsd= xsd:string, xsd:integer, xsd:date, Example ex:index.html exterms:creation-date " "^^xsd:date. <creation-date rdf:datatype=" </creation-date> <title rdf:datatype=" RDF primer </title> 18 9

10 RDF: Containers and Collections Containers rdf:bag: unordered. May contain duplicates. rdf:seq: ordered. May contain duplicates. rdf:alt: set of alternatives Note: containers are open Collections Closed collections rdf:list, rdf:first,rdf:rest, rdf:nil 19 RDF: Reification Mechanism to turn a statement into a resource So we can make statements about other statements Vocabulary Sentence: rdf:statement rdf:subject, rdf:predicate, rdf:object Example: (ex:index.html dc:creator exstaff:85740.) ex:triple1 rdf:type rdf:statement. ex:triple1 rdf:subject ex:index.html. ex:triple1 rdf:predicate dc:creator. ex:triple1 rdf:object exstaff:

11 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 1. RDF 2. RDF Schema 3. OWL 3. Querying the Semantic Web 4. Linked Data 21 RDF Schema (RDFS) In RDF we talk about individual objects (resources) We would like to reason about classes that define typos of objects For instance, to avoid sentences like (allowed in RDF): SSIM is taught by SSIM (range restriction) Porto F.C. is taught by John (domain restriction) Solution Classes, relations, domain and range restrictions, Example: Courses must be taught by academic staff members only 22 11

12 RDF Schema (RDFS) W3C Recommendation RDFS extends RDF con new primitives Defines a basic language for describing ontologies Fixing the semantics of subclass of Classes and Properties hierarchies Inheritance Domain and Range restrictions 23 RDF Schema (RDFS) Clases (rdfs:class) e Instancias (rdf:type) Class definition <rdf:description rdf:id= Course"> <rdf:type rdf:resource=" </rdf:description> Or <rdfs:class rdf:id="course"/> Instances <Asignatura rdf:id="ssim "/> Class hierarchies (rdfs:subclassof) <rdfs:class rdf:id= Professor"> <rdfs:subclassof rdf:resource="#academisstaff"/> </rdfs:class> 24 12

13 RDF Schema (RDFS) Properties (rdf:property) <rdf:property rdf:id= taught_by /> Property restrictions (rdfs:domain, rdfs:range) <rdf:property rdf:id="taught_by"> <rdfs:domain rdf:resource="#course"/> <rdfs:range rdf:resource="#academicstaff"/> </rdf:property> Property hierachies (rdfs:subpropertyof) <rdf:property rdf:id= taught_by"> <rdfs:domain rdf:resource="#course"/> <rdfs:range rdf:resource="#academicstaff"/> <rdfs:subpropertyof rdf:resource="#involves"/> </rdf:property> 25 RDF Schema (RDFS) Class domain property domain Course type involves range subpropertyof range taught_by subclassof Professor Staff Academic subclassof Staff subclassof Assistant Professor RDF Schema type type RDF SSIM taught_by Eugenio Oliveira 26 13

14 RDF Schema (RDFS) Primitives Classes rdfs:resource, rdfs:literal, rdf:xmlliteral, rdfs:class, rdf:property, rdfs:datatype Properties rdf:type, rdfs:subclassof, rdf:subpropertyof, rdfs:domain, rdfs:range, rdfs:label, rdfs:comment Containers rdfs:container, rdf:bag, rdf:seq, rdf:alt, rdfs:containermembershipproperty, rdfs:member Collections rdf:list, rdf:first, rdf:rest, rdf:nil Reification rdf:statement, rdf:predicate, rdf:subject, rdf:object Others rdfs:seealso, rdfs:isdefinedby, rdf:value 27 RDF Schema (RDFS) owns Person domain range Fish Wendy type owns type Wanda type Restriction violation: the range of owns is Fish. OR There is not inconsistency: Wanda is a fish! Marmaid? 28 14

15 RDFS RDFS limitations It basically allows organise vocabularies in hierarchies Local scope of properties Range restrictions cannot be applied to some classes only It cannot be expressed: Disjoint classes Example: male y female Boolean combinations of classes Example: Person = Man Woman Cardinality restrictions Special characteristics of properties Transitive, symmetric, inverse of, 29 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 1. RDF 2. RDF Schema 3. OWL 3. Querying the Semantic Web 4. Linked Data 30 15

16 OWL Web Ontology Language W3C Recommendation Language for describing ontologies Extends RDFS, adding primitives to augment expressivity 31 OWL Heading owl:ontology owl:imports: URI ontología owl:versioninfo owl:priorversion: URI ontología owl:backwardcompatiblewith owl:incompatiblewith: it is not backward compatible owl:deprecatedclass owl:deprecatedproperty <owl:ontology rdf:about=""> <owl:versioninfo>v 1.1</owl:versionInfo> <rdfs:comment>an example ontology</rdfs:comment> <owl:imports rdf:resource=" <owl:backwardcompatiblewith rdf:resource=" <owl:priorversion rdf:resource=" </owl:ontology> 32 16

17 OWL Classes owl:class owl:class is subclass of rdfs:class <owl:class rdf:id= Course"/> rdfs:subclassof (v) owl:thing: > (superclass of all classes) owl:nothing:? (subclass of all classes) 33 OWL Properties owl:objectproperty owl:datatypeproperty rdfs:subpropertyof (r 1 v r 2 in H) rdfs:domain (9r.> v C or > v 8r.C) rdfs:range (> v 8r.C) 34 17

18 OWL Property characteristics owl:transitiveproperty: (r + ) p(x,y) p(y,z) p(x,z) (ej: ancestor of ) owl:symmetricproperty: (r r ) p(x,y) p(y,x) (ej: relative of ) owl:functionalproperty: (> v 1 r) p(x,y) p(x,z) y = z (ej: birth year ) owl:inverseof: (r ) p 1 (x,y) p 2 (y,x) owl:inversefunctionalproperty: (> v 1 r - ) p(y,x) p(z,x) y = z (ej: mobile number ) (ej: p 1 = teacher of, p 2 = student of ) 35 OWL Property restrictions owl:restriction owl:onproperty owl:allvaluesfrom: (8r.C) <owl:class rdf:id= Cow"> <rdfs:subclassof rdf:resource="#animal"/> <rdfs:subclassof> <owl:restriction> <owl:onproperty rdf:resource="#eats" /> <owl:allvaluesfrom rdf:resource="#plant" /> </owl:restriction> </rdfs:subclassof> </owl:class> owl:somevaluesfrom: (9r.C) owl:cardinality owl:maxcardinality ( n r) owl:mincardinality ( n r) owl:hasvalue (9r.{a}) 36 18

19 OWL Complex classes owl:intersectionof: (C u D) owl:unionof: (C t D) owl:complementof: ( C) owl:disjointwith: (C v D) disjoint classes owl:oneof: ({a,b,c} en O) enumerates individuals that belong to a class. Example: {Red, Amber, Green}. <owl:class rdf:id= TrafficLightColor"> <owl:oneof rdf:parsetype="collection"> <Color rdf:about="#red"/> <Color rdf:about="#amber"/> <Color rdf:about="#green"/> </owl:oneof> </owl:class> 37 OWL Ontology mapping owl:equivalentclass ( ) owl:equivalentproperty ( in H) owl:sameas: ({x} {x}) two URIs represent the same individual owl:differentfrom: ({x} {x}) two URIs do not represent the same individual owl:alldifferent owl:distinctmembers <owl:alldifferent> <owl:distinctmembers rdf:parsetype="collection"> <Color rdf:about="#red"/> <Color rdf:about="#ambar"/> <Color rdf:about="#green"/> </owl:distinctmembers> </owl:alldifferent> 38 19

20 OWL Annotations rdfs:label rdfs:comment rdfs:seealso rdfs:isdefinedby owl:annotationproperty owl:ontologyproperty 39 OWL: inference examples disjointwith example Professor owl:subclassof AcademicStaff. Book owl:subclassof Publication. AcademicStaff owl:disjointwith Publication. Inferred: Professor and Book are disjoints owl:equivalentclass example Man owl:subclassof Person Person owl:equivalentclass Human Inferred: Man is a subclass of Human Instances example A Semantic Web Primer rdf:type Book Book owl:subclassof Publication Inferred: A Semantic Web Primer is a Publication 40 20

21 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 3. Querying the Semantic Web 4. Linked Data 41 SPARQL Query Language for RDF W3C Recommendation Query language of RDF contents SQL-like sintax 42 21

22 SPARQL Basic patterns PREFIX rdf: < SELECT?name?sur WHERE {?x :name?nom.?x :surname?ape.?x rdf:type :Employee. } Group Patterns SELECT?name?sur WHERE { {?x :name?nom.?x :surname?ape. } {?x rdf:type :Employee.} } 43 SPARQL Optional patterns (OPTIONAL) SELECT?name?sur?y WHERE {?x :name?name.?x :surname?sur.?x rdf:type :Employee. OPTIONAL {?x :birth_year?y} } Alternative patterns(union) SELECT?name?y WHERE { {?x :name?name} UNION {?x :surname?sur}.?x rdf:type :Employee.?x :birth_year?a. } 44 22

23 SPARQL Restrictions (FILTER) SELECT?name?sur WHERE {?x :name?name.?x :surname?sur.?x rdf:type :Employee.?x :birth_year?y. FILTER (?y >= 1980").} Result formats SELECT CONSTRUCT: generates an RDF graph ASK: indicates whether a query pattern matches or not DESCRIBE: returns RDF graph that describes the resources found 45 SPARQL Result modifiers ORDER BY SELECT?name?sur WHERE {?x :name?name.?x :surname?sur. } ORDER BY?sur DISTINCT: avoid duplicates SELECT DISTINCT?name?sur OFFSET / LIMIT SELECT?name?sur WHERE {?x :name?name.?x :surname?sur.} ORDER BY?sur LIMIT 5 OFFSET

24 Introduction to the Semantic Web 1. Introduction to the Semantic Web 2. Ontology languages 3. Querying the Semantic Web 4. Linked Data 47 Web of Data (Linked Data) We want to query information like: All soccer players, who played as goalkeeper for a club that has a stadium with more than seats and who are born in a country with more than 10 million inhabitants From the Web of Documents to the Web of Data Linked Data (vídeo 16 min) 48 24

25 Web of Data (Linked Data) Principles of Linked Data (Tim Berners-Lee) 1. Use URIs as names for things 2. Use HTTP URIs so that people can look up those names. 3. When someone looks up a URI, provide useful information, using the standards (RDF*, SPARQL) 4. Include links to other URIs so that they can discover more things. 49 The Linking Open Data cloud diagram May datasets Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch

26 The Linking Open Data cloud diagram Sept datasets Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch The Linking Open Data cloud diagram July datasets Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch

27 The Linking Open Data cloud diagram Sept datasets 53 Linking Open Data cloud diagram, by Richard Cyganiak and Anja Jentzsch. Linked Data Data Generation From existing repositories, e.g. Relational DB, XML, CSV and spreadsheets, etc. to Linked Data Transforming information R2O and ODEMapster OBDI NOR2O Jena geometry2rdf Dynamic generation D2RQ Platform Triplify Ultrawrap 54 27

28 Linked Data Data Publication Virtuoso Open Source Edition D2R Server AllegroGraph RDFStore Joseki Sesame 55 Linked Data Data visualisation Pubby SNORQL Disco Hyperdata Browser 56 28

29 Linked Data: data integration [ [ 57 Linked Data Some existing Linked Data data sources Dbpedia: UK Government: USA Government: Musicbrainz:

30 Example: DBPedia Makes available information from Wikipedia Data generation from structured information extracted from Wikipedia Data publication OpenLink Virtuoso Public SPARQL endpoint: 59 Example: DBPedia Data visualisation Leipzig query builder OpenLink Interactive SPARQL Query Builder (isparql) SNORQL query explorer any other SPARQL-aware client(s) Other tools DBpedia Faceted Search Browser: Resource example: à

The Semantic Web RDF, RDF Schema, and OWL (Part 2)

The Semantic Web RDF, RDF Schema, and OWL (Part 2) The Semantic Web RDF, RDF Schema, and OWL (Part 2) Mitchell W. Smith Array BioPharma, Inc. msmith@arraybiopharma.com Page Agenda Part One: RDF RDF/XML Syntax RDF Schema SPARQL Part Two: OWL Ontologies

More information

Semantic Technologies

Semantic Technologies Semantic Technologies Part 14: Werner Nutt Acknowledgment These slides are based on the Latex version of slides by Markus Krötzsch of TU Dresden W. Nutt Semantic Technologies 2014/2015 (1/66) OWL W. Nutt

More information

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES OWL Syntax & Intuition Sebastian Rudolph Dresden, 26 April 2013 Content Overview & XML 9 APR DS2 Hypertableau II 7 JUN DS5 Introduction into RDF 9 APR DS3 Tutorial

More information

Web Ontology Language: OWL

Web Ontology Language: OWL Web Ontology Language: OWL Bojan Furlan A Semantic Web Primer, G. Antoniou, F. van Harmelen Requirements for Ontology Languages Ontology languages allow users to write explicit, formal conceptualizations

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

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

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

KDI OWL. Fausto Giunchiglia and Mattia Fumagallli. University of Trento KDI OWL Fausto Giunchiglia and Mattia Fumagallli University of Trento Roadmap Introduction The OWL Full Language OWL DL and OWL lite Exercises 2 Introduction Chapter 1 3 Requirements for Ontology Languages

More information

Table of Contents. iii

Table of Contents. iii Current Web 1 1.1 Current Web History 1 1.2 Current Web Characteristics 2 1.2.1 Current Web Features 2 1.2.2 Current Web Benefits 3 1.2.3. Current Web Applications 3 1.3 Why the Current Web is not Enough

More information

Web Ontology Language: OWL

Web Ontology Language: OWL Web Ontology Language: OWL Grigoris Antoniou Frank van Harmelen 1 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions 2 Requirements for Ontology

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

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

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

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

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

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

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

Web Ontology Language: OWL by Grigoris Antoniou Frank van Harmelen

Web Ontology Language: OWL by Grigoris Antoniou Frank van Harmelen Web Ontology Language: OWL by Grigoris Antoniou Frank van Harmelen Reference: `A Semantic Web Primer, by Grigoris Antoniou and Frank van Harmelen, The MIT Press, 2004 Lecture Outline 1. Basic Ideas of

More information

TMCL and OWL. Lars Marius Garshol. Bouvet, Oslo, Norway

TMCL and OWL. Lars Marius Garshol. Bouvet, Oslo, Norway TMCL and OWL Lars Marius Garshol Bouvet, Oslo, Norway larsga@bouvet.no Abstract. This paper compares the Topic Maps schema language TMCL with the corresponding RDF technologies RDFS/OWL, and describes

More information

Publishing Data Using Semantic Web Technologies

Publishing Data Using Semantic Web Technologies Publishing Data Using Semantic Web Technologies An introduction for software engineers Nikolaos Konstantinou, Ph.D. National Documentation Centre / N.H.R.F. Lecture Outline Introduction to the Semantic

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

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

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 in Depth: Web Ontology Language (OWL) Dr Nicholas Gibbins 32/3019

Semantic Web in Depth: Web Ontology Language (OWL) Dr Nicholas Gibbins 32/3019 Semantic Web in Depth: Web Ontology Language (OWL) Dr Nicholas Gibbins 32/3019 nmg@ecs.soton.ac.uk Introducing OWL For many, RDF Schema is a sufficiently expressive ontology language However, there are

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

DEVELOPING AN OWL ONTOLOGY FOR E- TOURISM

DEVELOPING AN OWL ONTOLOGY FOR E- TOURISM Chapter 4 DEVELOPING AN OWL ONTOLOGY FOR E- TOURISM Jorge Cardoso Department of Mathematics and Engineering, University of Madeira, 9000-390, Funchal, Portugal jcardoso@uma.pt 1. INTRODUCTION Currently,

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

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

Chapter 4 Web Ontology Language: OWL

Chapter 4 Web Ontology Language: OWL Web Ontology Language: OWL Grigoris Antoniou Frank van Harmelen 1 Lecture Outline 1. Basic Ideas of OWL 2. The OWL Language 3. Examples 4. The OWL Namespace 5. Future Extensions 2 Requirements for Ontology

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

Web Ontology Language: OWL

Web Ontology Language: OWL Web Ontology Language: OWL 1 Requirements for Ontology Languages Ontology languages allow users to write explicit, formal conceptualizations of domain models The main requirements are: a well-defined syntax

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

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 Web. Ontology and OWL. Morteza Amini. Sharif University of Technology Fall 95-96

Semantic Web. Ontology and OWL. Morteza Amini. Sharif University of Technology Fall 95-96 ه عا ی Semantic Web Ontology and OWL Morteza Amini Sharif University of Technology Fall 95-96 Outline Introduction & Definitions Ontology Languages OWL (Ontology Web Language) 2 Outline Introduction &

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

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

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

Lecture 8 OWL: Web Ontology Language

Lecture 8 OWL: Web Ontology Language info-h-509 xml technologies Lecture 8 OWL: Web Ontology Language Stijn Vansummeren February 14, 2017 lecture outline 1 Our story so far 2 Web Ontology Language OWL 3 Reasoning with OWL 1 Part I: Our story

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

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

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

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

Introduction to OWL. Marco Ronchetti Università di Trento Italy

Introduction to OWL. Marco Ronchetti Università di Trento Italy Introduction to OWL Marco Ronchetti Università di Trento Italy Languages Work on Semantic Web has concentrated on the definition of a collection or stack of languages.! These languages are then used to

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

Chapter 4 OWL. Outline. A Brief History of OWL: SHOE. The OWL Family Tree

Chapter 4 OWL. Outline. A Brief History of OWL: SHOE. The OWL Family Tree Chapter 4 OWL Outline 1. A bit of history 2. Basic Ideas of OWL 3. The OWL Language 4. Examples 5. The OWL Namespace 6. Future Extensions Based on slides from Grigoris Antoniou and Frank van Harmelen The

More information

Knowledge management. OWL Web Ontology Language

Knowledge management. OWL Web Ontology Language Knowledge management. OWL Web Ontology Language 1 RDF/RDFS RDF: triples for making assertions about resources RDFS extends RDF with schema vocabulary, e.g.: Class, Property type, subclassof, subpropertyof

More information

08 OWL SEMANTIC WEB ONTOLOGY WEB LANGUAGE IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD

08 OWL SEMANTIC WEB ONTOLOGY WEB LANGUAGE IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD SEMANTIC WEB 08 OWL ONTOLOGY WEB LANGUAGE IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM BASED ON SLIDES FROM GRIGORIS ANTONIOU AND FRANK VAN HARMELEN THE OWL FAMILY TREE

More information

Teil IV: Wissensrepräsentation im WWW. Kap.11: Semantic Web

Teil IV: Wissensrepräsentation im WWW. Kap.11: Semantic Web Vorlesung Künstliche Intelligenz Wintersemester 2007/08 Teil IV: Wissensrepräsentation im WWW Kap.11: Semantic Web Dieses Kapitel basiert weitgehend auf Material von Pascal Hitzler. Weitere Infos gibt

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

F. Farazi Department of Information Engineering and Computer Science, University of Trento, Trento, Italy

F. Farazi Department of Information Engineering and Computer Science, University of Trento, Trento, Italy 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 Chapter 3 The Semantic Web Languages Fausto Giunchiglia, Feroz Farazi, Letizia

More information

Teil IV: Wissensrepräsentation im WWW. Kap.11: Semantic Web. The semantic web layer cake

Teil IV: Wissensrepräsentation im WWW. Kap.11: Semantic Web. The semantic web layer cake The semantic web layer cake Vorlesung Künstliche Intelligenz Wintersemester 2007/08 Teil IV: Wissensrepräsentation im WWW Kap.11: Semantic Web Dieses Kapitel basiert weitgehend auf Material von Pascal

More information

Deep integration of Python with Semantic Web technologies

Deep integration of Python with Semantic Web technologies Deep integration of Python with Semantic Web technologies Marian Babik, Ladislav Hluchy Intelligent and Knowledge Technologies Group Institute of Informatics, SAS Goals of the presentation Brief introduction

More information

Knowledge management. OWL Web Ontology Language

Knowledge management. OWL Web Ontology Language RDF/RDFS Knowledge management. OWL Web Ontology Language RDF: triples for making assertions about resources RDFS extends RDF with schema vocabulary, e.g.: Class, Property type, subclassof, subpropertyof

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

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

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

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

The Semantic Web. INF5100 Autumn 2007 Norun C. Sanderson

The Semantic Web. INF5100 Autumn 2007 Norun C. Sanderson The Semantic Web INF5100 Autumn 2007 Norun C. Sanderson Outline TheSemanticWeb visionand purpose Technology building blocks Application areas Future INF5100 Autumn 2007 2 What is the Semantic Web? The

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

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

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

CC LA WEB DE DATOS PRIMAVERA Lecture 4: Web Ontology Language (I) Aidan Hogan

CC LA WEB DE DATOS PRIMAVERA Lecture 4: Web Ontology Language (I) Aidan Hogan CC6202-1 LA WEB DE DATOS PRIMAVERA 2015 Lecture 4: Web Ontology Language (I) Aidan Hogan aidhog@gmail.com PREVIOUSLY ON LA WEB DE DATOS (1) Data, (2) Rules/Ontologies, (3) Query, RDF: Resource Description

More information

Intelligent Agents. Pınar Yolum Utrecht University. Spring 2018 Pınar Yolum

Intelligent Agents. Pınar Yolum Utrecht University. Spring 2018 Pınar Yolum Intelligent Agents Pınar Yolum p.yolum@uu.nl Utrecht University Spring 2018 Pınar Yolum Web Ontology Language Spring 2018 Pınar Yolum Based largely on Dean Allemang; James Hendler, Semantic Web for the

More information

Chapter 4 OWL. Outline. The OWL Family Tree. A Brief History of OWL: SHOE

Chapter 4 OWL. Outline. The OWL Family Tree. A Brief History of OWL: SHOE Chapter 4 OWL Outline 1. A bit of history 2. Basic Ideas of OWL 3. The OWL Language 4. Examples 5. The OWL Namespace 6. OWL 2 Based on slides from Grigoris Antoniou and Frank van Harmelen The OWL Family

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

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

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at http://www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2005 Vol. 4, No. 1, January-February 2005 Ontology Modeling and MDA Dragan Djurić,

More information

Introducing Linked Data

Introducing Linked Data Introducing Linked Data (Part of this work was funded by PlanetData NoE FP7/2007-2013) Irini Fundulaki 1 1 Institute of Computer Science FORTH & W3C Greece Office Manager EICOS : 4th Meeting, Athens, Greece

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

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

RDF Schema. Philippe Genoud, UFR IM2AG, UGA Manuel Atencia Arcas, UFR SHS, UGA RDF Schema Philippe Genoud, UFR IM2AG, UGA Manuel Atencia Arcas, UFR SHS, UGA 1 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

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

OWL Web Ontology Language

OWL Web Ontology Language Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) OWL Web Ontology Language Dr. Mustafa Jarrar University of Birzeit

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

Exploring the Semantic Web with Kowari. Brian Sletten, Bosatsu Consulting, Inc.

Exploring the Semantic Web with Kowari. Brian Sletten, Bosatsu Consulting, Inc. Exploring the Semantic Web with Kowari Brian Sletten, Bosatsu Consulting, Inc. brian@bosatsu.net Speaker Qualifications Over 12 years of software development experience Has own software consulting company

More information

Semantic Web OWL. Dieter Fensel and Federico Facca

Semantic Web OWL. Dieter Fensel and Federico Facca Semantic Web OWL Copyright @2009 Dieter Fensel and Federico Facca 1 Where are we? # Title 1 Introduction 2 Semantic Web architecture 3 Resource Description Framework 4 Semantic Web of hypertext and Web

More information

OWL 2 Web Ontology Language:Mapping to RDF Graphs W3C Working Draft 02 December 2008

OWL 2 Web Ontology Language:Mapping to RDF Graphs W3C Working Draft 02 December 2008 OWL 2 Web Ontology Language: Mapping to RDF Graphs W3C Working Draft 02 December 2008 This version: Latest version: http://www.w3.org/tr/owl2-mapping-to-rdf/ Previous version: http://www.w3.org/tr/2008/wd-owl2-mapping-to-rdf-20081008/

More information

Forward Chaining Reasoning Tool for Rya

Forward Chaining Reasoning Tool for Rya Forward Chaining Reasoning Tool for Rya Rya Working Group, 6/29/2016 Forward Chaining Reasoning Tool for Rya 6/29/2016 1 / 11 OWL Reasoning OWL (the Web Ontology Language) facilitates rich ontology definition

More information

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web Dr Thanassis Tiropanis t.tiropanis@southampton.ac.uk The narrative Semantic Web Technologies The Web of data and the semantic

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

OWL-based reasoning with retractable inference

OWL-based reasoning with retractable inference OWL-based reasoning with retractable inference Carlo Jelmini and Stéphane Marchand-Maillet Viper Group CVML University of Geneva 1211 Geneva 4 Switzerland {jelmini, marchand}@cui.unige.ch Abstract As a

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

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

Reasoning with the Web Ontology Language (OWL)

Reasoning with the Web Ontology Language (OWL) Reasoning with the Web Ontology Language (OWL) JESSE WEAVER, PH.D. Fundamental & Computational Sciences Directorate, Senior Research Computer Scientist Discovery 2020 Short Course on Semantic Data Analysis

More information

BUILDING THE SEMANTIC WEB

BUILDING THE SEMANTIC WEB BUILDING THE SEMANTIC WEB You might have come across the term Semantic Web Applications often, during talks about the future of Web apps. Check out what this is all about There are two aspects to the possible

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

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

Why Ontologies? RRDIU - Semantic Web 2

Why Ontologies? RRDIU - Semantic Web 2 Ontologies OWL2 Why Ontologies? 2019-01-21 01RRDIU - Semantic Web 2 Semantics Knowledge Organizazion Systems Term Lists Authority files Glossaries Dictionaries, Vocabularies Gazetteers Classifications

More information

The P2 Registry

The P2 Registry The P2 Registry -------------------------------------- Where the Semantic Web and Web 2.0 meet Digital Preservation David Tarrant, Steve Hitchcock & Les Carr davetaz / sh94r / lac @ecs.soton.ac.uk School

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

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

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

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

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

Ontological Modeling: Part 7

Ontological Modeling: Part 7 Ontological Modeling: Part 7 Terry Halpin LogicBlox and INTI International University This is the seventh in a series of articles on ontology-based approaches to modeling. The main focus is on popular

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

Querying Data through Ontologies

Querying Data through Ontologies Querying Data through Ontologies Instructor: Sebastian Link Thanks to Serge Abiteboul, Ioana Manolescu, Philippe Rigaux, Marie-Christine Rousset and Pierre Senellart Web Data Management and Distribution

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

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