Web 2.0 Lecture 8: Resource Description Framework

Size: px
Start display at page:

Download "Web 2.0 Lecture 8: Resource Description Framework"

Transcription

1 Web 2.0 Lecture 8: Resource Description Framework doc. Ing. Tomáš Vitvar, Leopold-Franzens Universität Innsbruck and Czech Technical University in Prague Faculty of Information Technologies Software and Web Engineering Last modified: N/A Overview Resource Description Framework (RDF) Structured Property Values Encoding RDF in XML (RDF/XML) On top of RDF RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 2

2 Scope: Semantic Web Layered Cake Lecture 8: Resource Description Framework, CTU Summer Semester 3 RDF Resource Description Framework (RDF) Resource as defined in Web architecture usually anything that can be conveyed electronically plus abstract concepts that have no representation RDF is at the bottom of Semantic Web stack of languages References W3C Recommendations: RDF Suite of W3C Recommendations, RDF Primer Lecture 8: Resource Description Framework, CTU Summer Semester 4

3 Meaning of Data in XML a resource with URI <person xmlns=" <name>tomas Vitvar</name> <mailbox>tomas@vitvar.com</mailbox> <city>innsbruck</city> </person> no explicit meaning of terms: person, name, mailbox,... are terms defined in namespace but there is no URI assigned to them this does not work here: Need for a language to describe statements Resource Description Framework no explicit meaning of relationships: a person has name with value Tomas Vitvar ( Tomas Vitvar is a person), this person has mailbox with value tomas@vitvar.com ( tomas@vitvar.com is a mailbox), etc. Lecture 8: Resource Description Framework, CTU Summer Semester 5 BUT this person lives?, works?, was born?,... in a city Innsbruck RDF Statement RDF Tripple: subject predicate object a thing the statement describes (subject) a specific property of the object (predicate) a value of the property (subject) Representation of statements using a graph notation nodes are subject and objects (rectangles are literals) arcs are predicates identifiers to identify subject, predicate, object URI references (URIrefs) machine processable language RDF serializations in triples, RDF/XML, N3, Turtle notations Lecture 8: Resource Description Framework, CTU Summer Semester 6

4 Meaning of Data in RDF individuals, Tomas Vitvar identified by kinds of things, Person identified by #Person properties of those things, e.g., mailbox, identified by #mailbox values of those properties, e.g. + values of other data types such as strings, integers, dates, etc. Lecture 8: Resource Description Framework, CTU Summer Semester 7 References in statements URI identifies network-accessible things (electronic documents) URL things that are not network-accessible, such as human beings abstract concepts that do not physically exist, such as "fullname" RDF uses URI references to identify subjects, predicates, objects URI references (or URIref) URI with an optional fragment identifier RDF resource is anything that can be identified with URIref a set of URIrefs is called RDF vocabulary Literals character strings to represent property values can only be assigned to objects in RDF (in other words, objects can be either URIrefs or literals) they cannot be assigned to subjects or properties two kinds: plain literals and typed literals Lecture 8: Resource Description Framework, CTU Summer Semester 8

5 RDF Serializations Triples Notation Triples notation list of all triples from RDF graph the full triples notation requires that URI references be written out completely (in angled brackets) very long documents, some URIrefs need to be repeated < < "Tomas". Simplicity for examples QNames without angle brackets common prefixes and namespaces rdf: rdfs: dc: ex: ext: xsd: example ex:index.html dc:creator "Tomas". Lecture 8: Resource ex:index.html Description Framework, dc:language CTU Summer "en" Semester. 9 Kinds of Things Property rdf:type defines a type of a resource ex:me rdf:type ext:person. corresponds to "is a member of" relationship ext:person understood as a class, however RDF does not define its semantics RDF Schema provides additional vocabulary for class semantics Lecture 8: Resource Description Framework, CTU Summer Semester 10

6 Overview Resource Description Framework (RDF) Structured Property Values Encoding RDF in XML (RDF/XML) On top of RDF RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 11 Structured Property Values Real-world complex structures Tomas works at Technikestrasse 21a, 6020 Innsbruck, Austria ex:tomas ext:works "Technikestrasse 21a, 6020 Innsbruck, Austria". usually needs to be recored as a structure, i.e. street, city, ZIP,... describe Tomas's address as a resource having URIref do we need such identifier? (when we reference it from other graph yes, otherwise not really) Lecture 8: Resource Description Framework, CTU Summer Semester 12

7 Blank Nodes What are blank nodes Nodes that do not need to be referenced from outside of the graph No need to URIref, is only used within the graph Blank node identifier local within a graph: _:localid local id must be unique within the graph two blank nodes in two different graphs having the same local ids are not the same! Lecture 8: Resource Description Framework, CTU Summer Semester 13 Modeling with Blank Nodes N-ary relationships In fact, a way to model n-ary relationships blank node is a way to break up n-ary to binary relationships 3-ary relationship between Tomas and (Technikestr, Innsbruck, 6020) Tomas Technikestr, Tomas Innsbruck, Tomas 6020 Unidentified things not always good to use URIs such as s to identify people s may change, disappear,... sometimes no need to assign unique ids to people Example the author of the book is mailto:tomas@vitvar.com, the author of the book is a person with mailto:tomas@vitvar.com a person = abstract concept, can be modeled using a blank node ex:book23 ext:author _:author1 _:author1 ext: <mailto:tomas@vitvar.com> _:author1 ext:name "Tomas Vitvar" _:author1 rdf:type ex:person Lecture 8: Resource Description Framework, CTU Summer Semester 14

8 Untyped and Typed Literals Untyped Literals No information about how to interpret a value of the plain literal a programme must have a knowledge how to interpret the value ex:person1 ext:age "24" Typed literals pairing a string with a URIref that identifies a particular datatype ex:person1 ext:age "24"^^xsd:integer, where xsd: is RDF does not define its own data types (except rdf:xmlliteral) no need to map external to native ones RDF uses external data types defined in XML Schema not all are suitable, only basic ones such as string, integer, date, etc. Lecture 8: Resource Description Framework, CTU Summer Semester 15 Main value of a structured property Contextual information Need to express context in the global Web environment not safe to assume all understand the implicit context the same Example: weight in pounds and kilograms solutions: specialized property name ext:weightkg specialized datatypes extypes:unitkg Main value example: weight ex:computer324 ext:weight "2.4"^^xsd:decimal unit is implicit, it is useful to define it explicitly ex:weight should have 2 components, weight typed value and a unit decimal value could be considered as the main value of the property structured value with rdf:value property ex:computer324 ext:weight _:weight584. _:weight584 rdf:value "2.4"^^xsd:decimal. _:weight584 ext:unit ex:kilograms. Lecture 8: Resource Description Framework, CTU Summer Semester 16

9 Overview Resource Description Framework (RDF) Structured Property Values Encoding RDF in XML (RDF/XML) On top of RDF RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 17 Basic Rules Representation of RDF in XML language Example RDF triple a page index.html was created on August 16, 1999 ex:index.html ext:creation-date "Aug 16, 1999". RDF/XML representation We can interpret a RDF statement as it is a description that is about a subject of the statement XML element (QName) of the description is the predicate a value of the element is the object <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:ext=" <rdf:description rdf:about=" <ext:creation-date>august 16, 1999</ext:creation-date> </rdf:description> </rdf:rdf> URIrefs must be written out when in attribute values Lecture 8: Resource Description Framework, CTU Summer Semester 18

10 Multiple Statements and Typed Literals Example RDF triples ex:index.html ext:creation-date "Aug 16, 1999". ex:index.html dc:language "en". ex:index.html ext:rank "3"^^xsd:decimal. ex:index.html dc:creator < RDF/XML representation <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:dc=" xmlns:ext=" <rdf:description rdf:about=" <ext:creation-date>august 16, 1999</ext:creation-date> <dc:language>en</dc:language> <ext:rank rdf:datatype=" 3</ext:rank> <dc:creator rdf:resource=" </rdf:description> </rdf:rdf> a description may combine all properties for a single subject but there also can be a description for every subject such representations are the same Lecture 8: Resource Description Framework, CTU Summer Semester 19 Blank Nodes Example RDF triples ex:index.html ext:editor _:editor332. _editor332 ext:name "Tomas Vitvar". _editor332 ext:homepage < RDF/XML representation <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:ext=" <rdf:description rdf:about=" <ext:editor rdf:nodeid="editor332"/> </rdf:description> <rdf:description rdf:nodeid="editor332"> <ext:name>tomas Vitvar<ext:name> <ext:homepage rdf:resource=" </rdf:description> </rdf:rdf> A node with id editor332 can be referred to from within the RDF graph, not outside of the RDF graph Lecture 8: Resource Description Framework, CTU Summer Semester 20

11 Abbreviating URIrefs ENTITY declaration Example RDF triples ex:index.html ext:editor _:editor332. _editor332 ext:name "Tomas Vitvar"^^xsd:string. _editor332 ext:homepage < RDF/XML representation <?xml version="1.0"?> <!DOCTYPE rdf:rdf [<!ENTITY xsd " <rdf:rdf xmlns:rdf=" xmlns:ext=" <rdf:description rdf:about=" <ext:editor rdf:nodeid="editor332"/> </rdf:description> <rdf:description rdf:nodeid="editor332"> <ext:name rdf:datatype="&xsd;string">tomas Vitvar<ext:name> <ext:homepage rdf:resource=" </rdf:description> </rdf:rdf> Lecture 8: Resource Description Framework, CTU Summer Semester 21 Abbreviating URIrefs xml:base Example RDF triples Statements about a book Introduction to RDF exbooks corresponds to exbooks:item334 ext:name "Introduction to RDF". extbooks:item334 ext:rankedby "Tomas Vitvar". extbooks:item334 ext:rank "4". RDF/XML representation <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:ext=" xml:base=" <rdf:description rdf:id="item334"> <ext:name>introduction to RDF</ext:CPU> <ext:rankedby>tomas Vitvar</ext:rankedBy> <ext:rank>4</ext:rank> </rdf:description> </rdf:rdf> The book has an URIref Lecture 8: Resource Description Framework, CTU Summer Semester 22

12 Overview Resource Description Framework (RDF) Structured Property Values Encoding RDF in XML (RDF/XML) On top of RDF RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 23 RDF Schema RDF Schema Specification RDF vocabulary description language (RDF Schame or RDFS) Semantics for classes and properties W3C Standard Specification: RDF Schema RDF vs. RDF Schema RDF defines a way to describe statements about resources RDF Schema defines a language to describe terms (vocabularies) to be used to describe RDF statements RDF Schema does not need to always exist for RDF statements Example We can define a class Lecturer and use it in RDF statement ex:me rdf:type ext:lecturer, where ext corresponds to an URI This URI can point to a vocabulary defined in RDF Schema Lecture 8: Resource Description Framework, CTU Summer Semester 24

13 Defining Classes RDFS Class a concept of a type or category Web pages, people, document types, abstract concepts,... any resource having an rdf:type property whose value is the resource rdfs:class A class of motor vehicles ext:motorvehicle rdf:type rdfs:class. a concrete motor vehicle in RDF ex:mycar rdf:type ext:motorvehicle. Hierarchy of classes additional classes for specialized types of vehicles ext:van rdf:type rdfs:class. ext:truck rdf:type rdfs:class. and their hierarchy ext:truck rdfs:subclassof ext:motorvehicle. Lecture 8: Resource Description Framework, CTU Summer Semester 25 Defining Properties Range RDF Property semantics for properties to be used in RDF examples: weight, height, author,... ext:author rdf:type rdf:property. A range of a property rdfs:range defines values of a property as instances of a class ext:person rdf:type rdfs:class. ext:author rdf:type rdf:property. ext:author rdfs:range ext:person. More ranges for a single property ext:author rdfs:range ext:female. ext:author rdfs:range ext:person. an instance of the author should be both female and person ex:book_rdf ext:author ex:alice. ex:alice rdf:type ext:female. ex:alice rdf:type ext:person. Lecture 8: Resource Description Framework, CTU Summer Semester 26

14 Defining Properties Domain Typed literals value of a property given by a typed literal ext:age rdf:type rdf:property. ext:age rdfs:range xsd:integer. it may be useful to explicitly say that the value is a datatype xsd:integer rdf:type rdfs:datatype. A domain of a property rdfs:range defines a class to which the property may be applied ext:book rdf:type rdfs:class. ext:author rdf:type rdf:property. ext:author rdfs:domain ext:book. As for rdf:range, a property may have more than one rdfs:domain (and a resource having such a property should be an instance of all classes of these domains) Lecture 8: Resource Description Framework, CTU Summer Semester 27 Comparison of Languages Lecture 8: Resource Description Framework, CTU Summer Semester 28

15 Overview Resource Description Framework (RDF) RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 29 RDFa Embedding RDF data in XHTML XHTML only, is extensible, HTML not RDFa defines a number of extension attributes Parses may recognize RDFa annotations in HTML too though RDFa is generic to embed arbitrary RDF data in any vocabulary however, standard (commonly agreed) vocabularies make sense W3C Recommendations: RDFa Specification RDFa Primer Lecture 8: Resource Description Framework, CTU Summer Semester 30

16 Property and Object Values as Resources Creating a property using rel attribute assume, following text is at Content on this page is licensed under <a xmlns:ext=" rel="ext:license" href=" a Creative Commons License attribution </a> This corresponds to the RDF triple < ext:license < When the subject is not explicitly stated, then the subject is the URL of the XHTML page being described Lecture 8: Resource Description Framework, CTU Summer Semester 31 Property and Object Values as Literals Creating a property using property attribute RDFa defines a property extension attribute assume, following text is at <div xmlns:dc=" <h3 property="dc:creator">tomas<h3> </div> This corresponds to the RDF triple < dc:creator "Tomas". Typed literals RDFa defines a datatype extension attribute <div xmlns:dc=" xmlns:xsd=" <h3 property="dc:creator" datatype="xsd:string">tomas<h3> </div> Alternative content RDFa defines content extension attribute replaces the object value that is in the element's value <div xmlns:dc=" <h3 property="dc:date" content=" ">8 April<h3> </div> Lecture 8: Resource Description Framework, CTU Summer Semester 32

17 Subject Creating a subject using about attribute RDFa defines about extension attribute assume, following text is at p=107 <div xmlns:dc=" about="/p/107" > <h3 property="dc:creator">tomas<h3> </div> This corresponds to the RDF triple < dc:creator "Tomas". Also possible to use multiple subjects on a single page Nested subjects <div xmlns:dc=" about="/p/107" > <h3 property="dc:creator">tomas<h3> <div about="/p/img/323"> <img src="..."/> <h3 property="dc:creator">peter<h3> </div> </div> Lecture 8: Resource Description Framework, CTU Summer Semester 33 two RDF triples Types and Blank Nodes Types RDFa defines typeof extension attribute corresponds to rdf:type property Blank node When annotation has typeof but not about blank node, that is, a node without a subject <div about="#me" rel="foaf:knows" xmlns:foaf=" <div typeof="foaf:person"> <p property="foaf:name">peter<p> <p> <a rel="foaf:mbox" href="mailto:peter@novak.cz"> peter@novak.cz</a> <p> </div> I know Peter Novak who has petr@novak.cz Lecture 8: Resource Description Framework, CTU Summer Semester 34

18 Overview Resource Description Framework (RDF) RDF in attributes (RDFa) OpenGraph Protocol Lecture 8: Resource Description Framework, CTU Summer Semester 35 OpenGraph Protocol Global Social Graph important adoption of RDFa, see Open Graph Protocol defines meta-data for pages' description so that it can be easily included in a global graph connecting people and pages through likes person likes page Lecture 8: Resource Description Framework, CTU Summer Semester 36

19 Page Annotations Open Graph protocol main properties the page is the object in the RDF triple og:title title of the page og:type type of the content (e.g., movie) og:image URL of the image for the page og:url a canonical URL of the page to be used as its permanent ID in the graph HTML page annotation RDFa example <html xmlns:og=" <head> <title>the Rock (1996)</title> <meta property="og:title" content="the Rock" /> <meta property="og:type" content="movie" /> <meta property="og:url" content=" /> <meta property="og:image" content=" />... </head>... </html> Lecture 8: Resource Description Framework, CTU Summer Semester 37 Publishing updates Ownership Page must be associated with a Facebook application using fb:app_id meta tag Owners can publish a stream of updates using Facebook Graph API Getting access curl -F type=client_cred \ -F client_id=app_id \ -F client_secret=app_secret \ Publishing updates curl -F 'access_token=...' \ -F 'message=hello Likers' \ -F 'id= \ Lecture 8: Resource Description Framework, CTU Summer Semester 38

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

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

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

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

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

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

INF3580/4580 Semantic Technologies Spring 2015

INF3580/4580 Semantic Technologies Spring 2015 INF3580/4580 Semantic Technologies Spring 2015 Lecture 15: RDFa Martin Giese 11th May 2015 Department of Informatics University of Oslo Repetition 18 June: Guest lecture, Lars Marius Garshol 25 May: no

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

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

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

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

More information

Semantic Days 2011 Tutorial Semantic Web Technologies

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

More information

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

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

CS Knowledge Representation and Reasoning (for the Semantic Web)

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

More information

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 SPARQL. Part I: Basics of RDF. Dresden, August Sebastian Rudolph ICCL Summer School

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

More information

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

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

RESOURCES DESCRIPTION FRAMEWORK: RDF

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

More information

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

Today s Plan. INF3580 Semantic Technologies Spring RDF on the Web. Outline. Lecture 13: Publishing RDF Data on the Web.

Today s Plan. INF3580 Semantic Technologies Spring RDF on the Web. Outline. Lecture 13: Publishing RDF Data on the Web. Today s Plan INF3580 Semantic Technologies Spring 2010 Lecture 13: Publishing RDF Data on the Web Martin Giese 11th May 2010 1 Introduction 2 3 Linking RDF to HTML 4 Department of Informatics University

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

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

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

More information

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

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

Knowledge Representation for the Semantic Web

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

More information

RDF. Mario Arrigoni Neri

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

More information

Linking Data with RDF

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

More information

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 03 RDF DATA MODEL RESOURCE DESCRIPTION FRAMEWORK IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD

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

More information

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

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

MI-PDB, MIE-PDB: Advanced Database Systems

MI-PDB, MIE-PDB: Advanced Database Systems MI-PDB, MIE-PDB: Advanced Database Systems http://www.ksi.mff.cuni.cz/~svoboda/courses/2015-2-mie-pdb/ Lecture 11: RDF, SPARQL 3. 5. 2016 Lecturer: Martin Svoboda svoboda@ksi.mff.cuni.cz Author: Martin

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

O.Curé [1 ] Mashup, Microformats, RDFa and GRDDL

O.Curé [1 ] Mashup, Microformats, RDFa and GRDDL O.Curé [1 ] Mashup, Microformats, RDFa and GRDDL O.Curé [2 ] Mashup A mashup application combines contents or servives coming from several, possibly heteogeneous, applications. In the case of a we site,

More information

RDF. Charlie Abela Department of Artificial Intelligence

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

More information

KNOWLEDGE 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

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

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

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

Transforming Data from into DataPile RDF Structure into RDF

Transforming Data from into DataPile RDF Structure into RDF Transforming Data from DataPile Structure Transforming Data from into DataPile RDF Structure into RDF Jiří Jiří Dokulil Charles Faculty of University, Mathematics Faculty and Physics, of Mathematics Charles

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

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

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

What's New in RDF 1.1

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

More information

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

KNOWLEDGE GRAPHS. Lecture 2: Encoding Graphs with RDF. TU Dresden, 23th Oct Markus Krötzsch Knowledge-Based Systems

KNOWLEDGE GRAPHS. Lecture 2: Encoding Graphs with RDF. TU Dresden, 23th Oct Markus Krötzsch Knowledge-Based Systems KNOWLEDGE GRAPHS Lecture 2: Encoding Graphs with RDF Markus Krötzsch Knowledge-Based Systems TU Dresden, 23th Oct 2018 Encoding Graphs We have seen that graphs can be encoded in several ways: Adjacency

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

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 Tools. Federico Chesani 18 Febbraio 2010

Semantic Web Tools. Federico Chesani 18 Febbraio 2010 Semantic Web Tools Federico Chesani 18 Febbraio 2010 Outline A unique way for identifying concepts How to uniquely identified concepts? -> by means of a name system... SW exploits an already available

More information

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

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

More information

Multi-agent Semantic Web Systems: RDF Models

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

More information

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

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

More information

JENA: A Java API for Ontology Management

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

More information

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

DCMI Abstract Model - DRAFT Update

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

More information

Simplified RDF Syntax for Power System Model Exchange

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

More information

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

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

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

More information

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

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

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

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics Linked data and its role in the semantic web Dave Reynolds, Epimorphics Ltd @der42 Roadmap What is linked data? Modelling Strengths and weaknesses Examples Access other topics image: Leo Oosterloo @ flickr.com

More information

B4M36DS2, BE4M36DS2: Database Systems 2

B4M36DS2, BE4M36DS2: Database Systems 2 B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-b4m36ds2/ Lecture 2 Data Formats Mar n Svoboda mar n.svoboda@fel.cvut.cz 9. 10. 2017 Charles University in Prague,

More information

Information Network I Web 3.0. Youki Kadobayashi NAIST

Information Network I Web 3.0. Youki Kadobayashi NAIST Information Network I Web 3.0 Youki Kadobayashi NAIST Web 3.0 Overview: Interoperability in the Web dimension (1) Interoperability of data: Metadata Data about data Assist in interacting with arbitrary

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

Multi-agent and Semantic Web Systems: RDF Data Structures

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

More information

Web 3.0 Overview: Interoperability in the Web dimension (1) Web 3.0 Overview: Interoperability in the Web dimension (2) Metadata

Web 3.0 Overview: Interoperability in the Web dimension (1) Web 3.0 Overview: Interoperability in the Web dimension (2) Metadata Information Network I Web 3.0 Youki Kadobayashi NAIST Web 3.0 Overview: Interoperability in the Web dimension (1) Interoperability of data: Assist in interacting with arbitrary (including unknown) resources

More information

The Semantic Web. What is the Semantic Web?

The Semantic Web. What is the Semantic Web? The Semantic Web Alun Preece Computing Science, University of Aberdeen (from autumn 2007: School of Computer Science, Cardiff University) What is the Semantic Web, and why do we need it now? How does the

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

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

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

CWI. Multimedia on the Semantic Web. Jacco van Ossenbruggen, Lynda Hardman, Frank Nack. Multimedia and Human-Computer Interaction CWI, Amsterdam

CWI. Multimedia on the Semantic Web. Jacco van Ossenbruggen, Lynda Hardman, Frank Nack. Multimedia and Human-Computer Interaction CWI, Amsterdam Multimedia on the Semantic Web Jacco van Ossenbruggen, Lynda Hardman, Frank Nack Multimedia and Human-Computer Interaction, Amsterdam Short history of the Web in three generations (see thesis for long

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

Chapter 13: Advanced topic 3 Web 3.0

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

More information

Standards for language encoding: Sharing resources

Standards for language encoding: Sharing resources Standards for language encoding: Sharing resources Tomaž Erjavec Dept. of Knowledge Technologies Jožef Stefan Institute ESSLLI 2011 Sharing language resources Copyright Making information about resources

More information

Semantic Web Fundamentals

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

More information

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

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

RDF Graph Data Model

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

More information

Web 2.0 Lecture 1: Motivation and Course Overview

Web 2.0 Lecture 1: Motivation and Course Overview Web 2.0 Lecture 1: Motivation and Course Overview 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

Semantic Web and Python Concepts to Application development

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

More information

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

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Xiang Su and Jukka Riekki Intelligent Systems Group and Infotech Oulu, FIN-90014, University of Oulu, Finland {Xiang.Su,Jukka.Riekki}@ee.oulu.fi

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

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

Is Linked Data the future of data integration in the enterprise?

Is Linked Data the future of data integration in the enterprise? Is Linked Data the future of data integration in the enterprise? John Walker Email: john.walker@nxp.com Twitter: @NXPdata Pilot Linked Open Data NXP is a semiconductor (microchip) manufacturer Established:

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

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

Lars Schmidt-Thieme, Information Systems and Machine Learning Lab (ISMLL), University of Hildesheim, Germany, Course on XML and Semantic Web

Lars Schmidt-Thieme, Information Systems and Machine Learning Lab (ISMLL), University of Hildesheim, Germany, Course on XML and Semantic Web Course on XML and Semantic Web Technologies, summer term 2012 0/45 XML and Semantic Web Technologies XML and Semantic Web Technologies II. Semantic Web / 3. SPARQL Query Language for RDF Lars Schmidt-Thieme

More information

Today s Plan. 1 Repetition: RDF. 2 Jena: Basic Datastructures. 3 Jena: Inspecting Models. 4 Jena: I/O. 5 Example. 6 Jena: ModelFactory and ModelMaker

Today s Plan. 1 Repetition: RDF. 2 Jena: Basic Datastructures. 3 Jena: Inspecting Models. 4 Jena: I/O. 5 Example. 6 Jena: ModelFactory and ModelMaker Today s Plan INF3580/4580 Semantic Technologies Spring 2015 Lecture 3: Jena A Java Library for RDF Martin Giese 2nd February 2015 2 Department of Informatics University of Oslo INF3580/4580 :: Spring 2015

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

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

Metadata Standards and Applications. 4. Metadata Syntaxes and Containers

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

More information

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