Goals. Introduction to Ontologybased. Service Semantics. Functional Semantics. Need more than XML Schema. Non-functional Semantics

Size: px
Start display at page:

Download "Goals. Introduction to Ontologybased. Service Semantics. Functional Semantics. Need more than XML Schema. Non-functional Semantics"

Transcription

1 Goals Introduction to Ontologybased Semantics Semantic Web, ontologies, RDF, OWL, N3 With thanks to Declan O Sullivan To provide some insight into the usefulness of ontologies To provide an understanding of the features of RDFS and OWL and their use in automated reasoning To provide an outline of the N3 syntax Use N3 to express RDFS and OWL sufficient for later examples and exercises on service semantics Service Semantics WSDL provides the syntax we need for interoperating with a service, but little in the way of semantics Examining this example raises many questions about functional and non-functional semantics <message name= getcheapestflightrequest"> <part name= origin" type="xsd:string"/> <part name= destination" type="xsd:string"/> <part name= date" type="xsd:date"/> </message> <message name= getcheapestflightresponse"> <part name= flight" type="xsd:string"/> <part name= time" type="xsd:time"/> <part name= cost type= xsd:float /> </message> <porttype name= cheapestflight"> <operation name="getcheapestflight"> <input message= getcheapestflightrequest"/> <output message= getcheapestflightresponse"/> </operation> </porttype> Functional Semantics What do origin and destination strings represent? Country, city, airport, restrictions (airline, national, regional)? What does flight string represent? Airline, flight number, plane type? What does time string represent? Departure time? Note xsd:time probably is adequate - supports timezone information What does cost float represent? Currency, to how many decimal points? Non-functional Semantics Availability Can we assume 24x7x365 availability globally for web service unless otherwise stated Channels WSDL binding to SOAP supports this WSDL says nothing about: Charging Styles Settlement Service Quality Security and Trust Ownership and Rights Need more than XML Schema XML is Syntax DTDs talk about element nesting XML Schema schemas give you data types need anything else? => write comments! XML DTDs and XML Schemas are sufficient for exchanging data between parties who have agreed to meaning of terms beforehand Domain Semantics are complex: implicit assumptions, hidden semantics sources seem unrelated to the non-expert Need Structure and Semantics beyond XML trees! employ richer OO models make domain semantics and glue knowledge explicit use ontologies to fix terminology and conceptualization avoid ambiguities by using formal semantics (logics) 1

2 Informally: What is an Ontology? Defines the terms used to describe and represent an area of knowledge Used by people, databases, applications that need to share domain information Ontologies include computer-usable definitions of basic concepts in the domain and the relationships among them They encode knowledge in a domain and knowledge that spans domains Ontology: A definition An "ontology defines the common words and concepts (meaning) used to describe and represent an area of knowledge. An ontology can range from a Taxonomy (knowledge with minimal hierarchy or a parent/child structure) to a Thesaurus (words and synonyms) to a. Conceptual Model (with more complex knowledge) to a Logical Theory (with very rich, complex, consistent and meaningful knowledge). A well-formed ontology is one that is expressed in a well-defined syntax that has a well-defined machine interpretation consistent with the above ontology definition An explicit description of a domain Concepts (aka: class, set, type, predicate) event, gene, gammaburst, atrium, molecule, cat vermin Properties of concepts and relationships between them (aka: slot) rodent Taxonomy: generalisation ordering among concepts isa, mouse partof, subprocess Relationship, Role or Attribute: functionof, hasactivity location, eats, size animal domestic dog cat cow eats isa relationships An explicit description of a domain Constraints or axioms on properties and concepts: value: integer domain: cat cardinality: at most 1 animal range: 0 <= X <= 100 cows are larger than dogs cats cannot eat only vegetation vermin domestic cats and dogs are disjoint cat dog Values or concrete domains rodent cow eats integer, strings mouse An explicit description of a domain Nominals Similar to abstract classes/types Concepts that cannot have instances Instances that are used in conceptual definitions ItalianDog = Dog bornin Italy Individuals or Instances sulphur, trpa Gene, felix Ontology versus Knowledge Base An ontology = concepts+properties+axioms+values+ nominals A knowledge base = ontology+instances vermin animal dog cat cow rodent eats mouse mickey jerry domestic felix tom describe the vocabulary related to a generic domain by specializing the concepts introduced in the top-level ontology. Types of Ontologies describe very general concepts like space, time, event, which are independent of a particular problem or domain. It seems reasonable to have unified top-level ontologies for large communities of users. describe the vocabulary related to a generic task or activity by specializing the top-level ontologies. These are the most specific ontologies. Concepts in application ontologies often correspond to roles played by domain entities while performing a certain activity. 2

3 Ontologies - Some Examples General purpose ontologies: WordNet / EuroWordNet, The Upper Cyc Ontology, 2-1/index.html IEEE Standard Upper Ontology, Domain and application-specific ontologies: RDF Site Summary RSS, UMLS, KA2 / Science Ontology, RETSINA Calendering Agent, AIFB Web Page Ontology, Web-KB Ontology, 2.cs.cmu.edu/afs/cs.cmu.edu/project/theo- 11/www/wwkb/ Dublin Core, Meta-Ontologies Semantic Translation, nto/st/index.html RDFT, FT/0.27/RDFT.rdfs Evolution Ontology, xamples/evolution.rdfs Ontologies in a wider sense Agrovoc, Art and Architecture, tools/vocabulary/aat/ UNSPSC, DTD standardizations, e.g. HR-XML, Semantic Web Initiative of W3C, strongly driven by Sir Tim Berners Lee To date Web has been developed as a medium for document manipulation by people Aim to augment the web pages with data targeted at computers, and add documents targeted solely at computers, e.g. semantic web service descriptions Challenges Agreeing on standard Markup Language OWL standardisation progressing Generating sufficient common ontologies that can be referred to people in their own ontologies (e.g. definition of food, definition of person etc.) Availability of indexing crawlers or web service repositories to take advantage of new approach Tool support for people creating own ontologies Tool support for automatic markup of documents for end users, e.g. incorporation into Word or Frontpage etc. Tool support for automatic markup of web services for end users, e.g. incorporation into.net, J2EE etc. Subject Property Resource Description Framework (RDF) RDF is a W3C recommendation that enables encoding, exchange and reuse of structured metadata in XML Triples of assertions can be expressed using XML tags A bit like Subject, Property, Object of a sentence Concept RDF statement property E.g. Cabernet Sauvignon grape, is a type of, Wine grape <rdf:description rdf:about="cabernet Sauvignon grape > <rdf:type rdf:resource= #Wine grape" /> </rdf:description> Object Each resource can be assigned a different Universal Resource Identifier (URI) Thus different meanings for the same term can be assigned different URIs Reference: RDF Primer. W3C draft technical note, 2002 Value Concept Notational Verbosity Semantic Web relies on a stack of languages XML for document formatting and referencing elements of other document XML Schema for encoding data types RDF semantic description triple RDFS definition of classes, properties and subclasses in RDF OWL add assertions about relationships between classes/properties All aim to support machine processing and inference over the WWW BUT. Results in an incredibly verbose XML-based syntax! Fine for computers, bad for people Need less verbosity for sketching out ideas, presenting examples and teaching ontologies N3 Ontology Notation Compact, text based language for playing around with ontologies Python Platform CWM allows inference and exporting to correct XML formats, e.g. RDF Statements are all: Subject- Property- Object. Everything is a URI: <#pat> <#knows> <#jo>. We will use N3 for our examples and exercises Semantically equivalent to RDF, RDFS and OWL Same vocab, less clutter Syntactic shortcuts Several objects with same subject and predicate separated by, Several statements about same subject separated by ; <#pat> <#child> <#al>, <#chaz>, <#mo>; <#age> 24 ; <#eyecolour> blue. 3

4 Anonymous Definitions Sometime want to declare something exists but without specifying a way to refer to it elsewhere Use square brackets [ ] <#pat> <#child> [ <#age> 4 ], [ <#age> 3 ]. Sharing Concepts Using ontologies to share concepts is central to Semantic Web Ontology developers should use existing defined concepts whenever possible Use URIs to define name spaces Assuming previous declarations were in ontology: In a new ontology we can pf: pf:pat <#employer> <#bigcorp>. In these examples we assume the following rdf: rdfs: owl: xsd: < By convention we assume : <#> so that above becomes pf:pat :employer :bigcorp List shorthand In RDF a collection of things is indicated using rdf:collection rdf:bag - unordered collection rdf:seq ordered collection rdf:alt collection of alternative values In N3 lists are white space separated and enclosed in parentheses ( ) :sibling rdf:alt ( :sister :brother ). Making Vocabularies RDFS defines the terms of resources and classes: everything in RDF is a resource classes are also resources, but they are also a collection of possible resources (i.e., individuals/instances) Relationships are defined among resources: typing : an individual belongs to a specific class subclassing : instance of one is also the instance of the other a bit like in object-based programming but the same resource can be subclass of multiple classes OWL supports classes and subclassing, but with richer semantics Relationships between classes, between properties and between classes and properties Much improved inference capabilities about relationships and subsumption of classes Based on Description Logic [Ivan Herman] Example: Defining terms and a subclass relationship Define the term Room Define term Restroom and state that a Restroom is a subclass of Room Note: owl:thing is a predefined OWL Class and is the root of all classes [Tim Berners Lee] :Room rdf:type rdfs:class Or replacing rdf:type with a :Room a rdfs:class :Restroom a owl:class; rdfs:subclassof :Room. Properties Property is a special class (rdf:property) i.e., properties are also resources so properties can existing in their own right, separate from any class yet declared unlike OO class attributes Properties declare relationship between two things :sister a rdf:property Properties are constrained by their range and domain i.e., what individuals can be on the left or on the right :sister rdfs:domain :Person rdfs:range :Woman There is also a possibility for a sub-property :stepsister rdfs:subpropertyof :sister Note, by convertion we start class identifiers with upper case, property identifiers with lower case [Ivan Herman] 4

5 Defining Properties in RDFS In RDF Schema the rdf:property is used both to Relate one Resource to another Resource For example, a accessrestrictedtogender property can relate a Restroom to a Gender Relate a resource to a rdfs:literal or datatype For example, a latitude property relates a Room to a xsd:string type OWL provides different statements for two cases owl:objectproperty is used to relate a resource to another What range :accessrestrictedtogender a owl:objectproperty; of values `what rdfs:range :Gender; classes is this rdfs:domain :Restroom. property associated owl:datatypeproperty is used to relate a resource to a rdfs:literal or XML with schema data type :latitute a owl:datatypeproperty rdfs:range < rdfs:domain :Place Class Properties in OWL Associate the property (defined elsewhere) with the Class by using combination of rdfs:subclassof and owl:onproperty Define local restrictions on that property using owl:restriction Cardinality restrictions can be stated on a property with respect to a particular class mincardinality: at least the given number maxcardinality: at most the given number Cardinality: exactly the given value :Wine a owl:class; rdfs:subclassof :PotableLiquid; rdfs:subclassof [ owl:restriction [ owl:onproperty :madefromgrape; owl:mincardinality 1 ]]; rdfs:subclassof [ owl:restriction [ owl:onproperty :locatedin owl:mincardinality 1 ]]. Assertions between Classes OWL provides several other mechanisms for defining classes owl:equivalentclass allows you to state that two classes are synonymous owl:disjointwith allows you to state that an instance of this class cannot be an instance of another E.g. Man and Woman could be stated as disjoint classes owl:unionof allows you specify that a class contains things that are from more than one class (similar to AND) E.g. Restroom could be defined as a union of MensRoom and LadiesRoom owl:intersectionof allows you to specify that a class contains things that are both one thing and another (similar to OR) owl:complementof allows you specify that a class contains things that are not other things (similar to NOT) E.g. Children are not SeniorCitizens Examples of Assertions Between Classes equivalentclass and unionof :AtomicPlaceInBuilding a owl:class; rdfs:subclassof AtomicPlace; owl:equivalentclass owl:class [ owl:unionof [ :Room :Hallway :Stairway :OtherPlaceInBuilding ]]. disjointwith :Stairway a owl:class; rdfs:subclassof :AtomicPlaceInBuilding; owl:disjointwith :Room; owl:disjointwith :Hallway. In addition OWL allows you state that a property is Symmetric If the pair (x.y) is an instance then it can be deduced that (y,x) is also an instance. Example, property adjacentroom property of Room or friend property of person Transitive If a property is transitive, then if the pair (x.y) is an instance of P and (y,z) is an instance of P then it can be deduced that (x,z) is also an instance. Example, property isspatiallysubsumedby Functional If a property is functional, then it has no more than one value for each individual, that is it can have 0 or 1 Example, property Address of a Building InverseOf One property may be stated to be the inverse of another property. It can be deduced that if the property P1 is stated to be the inverse of P2, then if X is related to Y via P2 then Y is related to X via P1 Example, property spatiallysubsumes InverseFunctionalProperty Only one thing can have instance of that property, e.g. coordinates Summary Example :LargeConferenceRoom a :Room; :address G.02 ; :spatiallysubsumedby O Reilly Institute :adjacentroom SmallConferenceRoom :coordinates 44,55. We can deduce: 1. The O Reilly Institute spatially subsumes the Large Conf Room (since spatiallysubsumedby is an inverse property) 2. The Small Conference Room is adjacent to Large Conference Room (since adjacentroom is symmetric) 3. Only the Large Conference Room can be found at coordinates 44,55 (since coordinates is inverse functional) 4. The Large Conference Room has only one address (since address is functional) 5

6 Hierarchy of Properties rdf:property owl:objectproperty owl:datatypeproperty owl:functionalproperty owl:inversefunctionalproperty owl:symmetricproperty owl:transitiveproperty Specifying Restrictions on range of values rdfs:range allows restriction on values of a property to a class and all its subclasses OWL allows for further restrictions to be specified allvaluesfrom provides for a local range restriction somevaluesfrom states that at least one value for that property is of specified type hasvalue states that the property is required to have a particular instance as a value Summary of Class Properties rdfs:class owl:class owl:restriction Properties: subclassof: rdfs:class Properties: intersectionof: rdf:list unionof: rdf:list complementof: owl:class oneof: rdf:list equivalentclass: owl:class disjointwith: owl:class Properties: onproperty: rdf:property allvaluesfrom: rdfs:class hasvalue: somevaluesfrom: rdfs:class cardinality: xsd:nonnegativeinteger mincardinality: xsd:nonnegativeinteger maxcardinality: xsd:nonnegativeinteger Instance Document Annotations Sometimes useful to explicitly annotate instance documents sameas: Two individuals may be stated to be the same. For example :BoardRoom a :Room; owl:sameindividualas :LargeConferenceRoom differentfrom: An individual may be stated to be different from other individuals alldifferent: A number of individuals may be stated to be mutually distinct For example, Large and Small Conference Rooms are both of type room, but we want to make clear they are distinct rooms Summary An OWL document contains the following kind of information: Class hierarchy info: an OWL document defines class/subclass relationships. Synonym info: an OWL document identifies equivalent classes and equivalent properties. Class association info: an OWL document maps one or more classes to one or more classes, via a property (i.e., domain/range info). Property metadata info: an OWL document contains a lot of metadata for properties. Class definition info: an OWL document specifies the composition of David [DARPA Lewis 2003] Symmetric: if P(x,y) then P(y,x) inverseof: if P1(x,y) then P2(y,x) Transitive: if P(x,y) and P(y,z) then P(x,z) Functional: if P(x,y) and P(x,z) then y=z InverseFunctional: if P(x,y) and P(z,y) then x=z allvaluesfrom: P(x,y) has y=allvaluesfrom(c) somevaluesfrom: P(x,y) has y=somevaluesfrom(c) hasvalue: P(x,y) and y=hasvalue(i) cardinality: cardinality(p) = n mincardinality: mincardinality(p) = n maxcardinality: maxcardinality(p) = n equivalentproperty: P1 = P2 intersectionof: C = intersectionof(c1, C2, ) unionof: C = unionof(c1, C2, ) complementof: C = complementof(c1) oneof: C = oneof(i1, I2, ) equivalentclass: C1 = C2 disjointwith: C1!= C2 sameindividualas: I1 = I2 differentfrom: I1!= I2 AllDifferent: I1!= I2, I1!= I3, I2!= I3, Thing: C1, C2,, I1, I2,, P1, P2, Summary of OWL Capabilities (by Roger Costello and Rob Simmons) InverseFunctional P x y 1 x Functional P 1 InverseFunctional & Functional P x y 1 1 LEGEND Properties: P, P1, P2, P3, Generic classes: C, C1, C2, C3, Specific classes: x, y, z Instances: I, I1, I2, I3, A non-negative integer: n P(x,y) is read as: property P relates domain x to range y y 6

7 References [Ludascher 03] Bertram Ludascher, CSE-291 course, University of California, San Diego [Carole Goble, Nigel Shadbolt, Ontologies and the Grid Tutorial] [DARPA 2003] Tutorial by Costello and Jacobs of MITRE funded by DARPA [Ivan Herman] [Tim Berners Lee] The OWL Guide provides a description of OWL, with many examples: Here is the URL to the OWL Reference document: 7

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

3/6/08. Introduction to Ontology Web Language (OWL) Graphs. Representing knowledge. Graphs as knowledge 2. Graphs as knowledge 1

3/6/08. Introduction to Ontology Web Language (OWL) Graphs. Representing knowledge. Graphs as knowledge 2. Graphs as knowledge 1 University of Dublin Trinity College Stack Architecture for Semantic Web Introduction to Ontology Web Language (OWL) Dr. Owen Conlan Intro to OWL Declan O Sullivan 2 Representing knowledge There are a

More information

Main topics: Presenter: Introduction to OWL Protégé, an ontology editor OWL 2 Semantic reasoner Summary TDT OWL

Main topics: Presenter: Introduction to OWL Protégé, an ontology editor OWL 2 Semantic reasoner Summary TDT OWL 1 TDT4215 Web Intelligence Main topics: Introduction to Web Ontology Language (OWL) Presenter: Stein L. Tomassen 2 Outline Introduction to OWL Protégé, an ontology editor OWL 2 Semantic reasoner Summary

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

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

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

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

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

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

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

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

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

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

Making BioPAX SPARQL

Making BioPAX SPARQL Making BioPAX SPARQL hands on... start a terminal create a directory jena_workspace, move into that directory download jena.jar (http://tinyurl.com/3vlp7rw) download biopax data (http://www.biopax.org/junk/homosapiens.nt

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

LINKING BACKGROUND INFORMATION

LINKING BACKGROUND INFORMATION LINKING BACKGROUND INFORMATION INTERLINK D4 Appendix 4, Michel Böhms (TNO) With input from EU V-CON and bsi LDWG OVERVIEW Basic Linking More Background Info on L1/L2/L3 semantic levels Advanced Linking

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

OWL an Ontology Language for the Semantic Web

OWL an Ontology Language for the Semantic Web OWL an Ontology Language for the Semantic Web Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK OWL p. 1/27 Talk Outline OWL p. 2/27 Talk Outline The Semantic Web OWL p. 2/27 Talk

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

OWL Full and UML 2.0 Compared

OWL Full and UML 2.0 Compared OWL Full and UML 2.0 Compared This document is intended to establish the relationship between the relevant features of UML 2.0 and OWL as part of the development of the Ontology Definition Metamodel (ODM).

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

Ontological Modeling: Part 2

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

More information

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES

FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES FOUNDATIONS OF SEMANTIC WEB TECHNOLOGIES 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

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

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

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

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

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

Helmi Ben Hmida Hannover University, Germany

Helmi Ben Hmida Hannover University, Germany Helmi Ben Hmida Hannover University, Germany 1 Summarizing the Problem: Computers don t understand Meaning My mouse is broken. I need a new one 2 The Semantic Web Vision the idea of having data on the

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

Semantic Web Ontologies

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

More information

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

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

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

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

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

More information

Semantic Web Solutions

Semantic Web Solutions MSc Thesis January 2007 Semantic Web Solutions By Hafiz Hammad Rubbani (hammad@itu.dk) Supervisors Henning Niss Thomas Hildebrandt ABSTRACT.5 AIM AND GOALS... 6 SCOPE.6 METHODOLOGY... 7 WHO SHOULD READ

More information

Ontological Modeling: Part 8

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

More information

Ontology Engineering for the Semantic Web and Beyond

Ontology Engineering for the Semantic Web and Beyond Ontology Engineering for the Semantic Web and Beyond Natalya F. Noy Stanford University noy@smi.stanford.edu A large part of this tutorial is based on Ontology Development 101: A Guide to Creating Your

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

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

Adding formal semantics to the Web

Adding formal semantics to the Web Adding formal semantics to the Web building on top of RDF Schema Jeen Broekstra On-To-Knowledge project Context On-To-Knowledge IST project about content-driven knowledge management through evolving ontologies

More information

FHIR RDF Sample side by side comparisons

FHIR RDF Sample side by side comparisons 1 2 FHIR RDF Sample side by side comparisons V10 Tony Mallia 12/1/15 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 Contents 1 Datatypes (section

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

Converting a thesaurus into an ontology: the use case of URBISOC

Converting a thesaurus into an ontology: the use case of URBISOC Advanced Information Systems Laboratory Cost Action C2 Converting a thesaurus into an ontology: the use case of URBISOC J. Nogueras-Iso, J. Lacasta Alcalá de Henares, 4-5 May 2007 http://iaaa.cps.unizar.es

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

XML and Semantic Web Technologies. III. Semantic Web / 2. Web Ontology Language (OWL)

XML and Semantic Web Technologies. III. Semantic Web / 2. Web Ontology Language (OWL) XML and Semantic Web Technologies XML and Semantic Web Technologies. Semantic Web / 2. Web Ontology Language (OWL) Lars Schmidt-Thieme nformation Systems and Machine Learning Lab (SMLL) nstitute of Economics

More information

Semantic Web. Tahani Aljehani

Semantic Web. Tahani Aljehani Semantic Web Tahani Aljehani Motivation: Example 1 You are interested in SOAP Web architecture Use your favorite search engine to find the articles about SOAP Keywords-based search You'll get lots of information,

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

OWLET: An Object-Oriented Environment for OWL Ontology Management

OWLET: An Object-Oriented Environment for OWL Ontology Management Proceedings of the 11th WSEAS International Conference on COMPUTERS, Agios Nikolaos, Crete Island, Greece, July 26-28, 2007 44 OWLET: An Object-Oriented Environment for OWL Ontology Management Agostino

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

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

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

More information

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

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

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

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

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

Ontologies and The Earth System Grid

Ontologies and The Earth System Grid Ontologies and The Earth System Grid Line Pouchard (ORNL) PI s: Ian Foster (ANL); Don Middleton (NCAR); and Dean Williams (LLNL) http://www.earthsystemgrid.org The NIEeS Workshop Cambridge, UK Overview:

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

Logical Foundations for the Semantic Web

Logical Foundations for the Semantic Web Logical Foundations for the Semantic Web Reasoning with Expressive Description Logics: Theory and Practice Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK Logical Foundations

More information

Semantic Web Test

Semantic Web Test Semantic Web Test 24.01.2017 Group 1 No. A B C D 1 X X X 2 X X 3 X X 4 X X 5 X X 6 X X X X 7 X X 8 X X 9 X X X 10 X X X 11 X 12 X X X 13 X X 14 X X 15 X X 16 X X 17 X 18 X X 19 X 20 X X 1. Which statements

More information

Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications

Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications Andrew Crapo 1, Katrina Griffith 2, Ankesh Khandelwal 3, John Lizzi 1, Abha Moitra 1, and Xiaofeng Wang 2 1 GE Global Research,

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

Ontological Modeling: Part 14

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

More information

Ontological Modeling: Part 11

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

More information

Metamodels for RDF Schema and OWL

Metamodels for RDF Schema and OWL Metamodels for RDF Schema and OWL Daniel T. Chang Elisa Kendall IBM Silicon Valley Lab Sandpiper Software, Inc. 555 Bailey Ave., San Jose, CA 95141 2053 Grant Road, #162, Los Altos, CA 94024 dtchang@us.ibm.com

More information

9 The Ontology UML Profile

9 The Ontology UML Profile 9 The Ontology UML Profile UML profile is a concept used for adapting the basic UML constructs to a specific purpose. Essentially, this means introducing new kinds of modeling elements by extending the

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

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

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

Efficient Querying of Web Services Using Ontologies

Efficient Querying of Web Services Using Ontologies Journal of Algorithms & Computational Technology Vol. 4 No. 4 575 Efficient Querying of Web Services Using Ontologies K. Saravanan, S. Kripeshwari and Arunkumar Thangavelu School of Computing Sciences,

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

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

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

OWL & SPARQL - 웹정보시스템

OWL & SPARQL - 웹정보시스템 - 웹정보시스템 - OWL & SPARQL 2009. 12 Sang-goo Lee School of Computer Science & Engineering Seoul National University, Seoul, Korea Seoul National University Seoul, Korea Copyright 2008~2009 SNU. All rights

More information

The OWL API: An Introduction

The OWL API: An Introduction The OWL API: An Introduction Sean Bechhofer and Nicolas Matentzoglu University of Manchester sean.bechhofer@manchester.ac.uk OWL OWL allows us to describe a domain in terms of: Individuals Particular objects

More information

Defining Several Ontologies to Enhance the Expressive Power of Queries

Defining Several Ontologies to Enhance the Expressive Power of Queries Defining everal Ontologies to Enhance the Expressive Power of Queries Bich-Liên Doan and Yolaine Bourda Computer cience Dpt. UPELEC, 3 rue Joliot Curie, 91192 Gif-sur-Yvette, France Bich-Lien.Doan@supelec.fr,

More information

Ontological Modeling: Part 15

Ontological Modeling: Part 15 Ontological Modeling: Part 15 Terry Halpin INTI International University This is the fifteenth article in a series on ontology-based approaches to modeling. The main focus is on popular ontology languages

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

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

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

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

More information

Extracting Ontologies from Standards: Experiences and Issues

Extracting Ontologies from Standards: Experiences and Issues Extracting Ontologies from Standards: Experiences and Issues Ken Baclawski, Yuwang Yin, Sumit Purohit College of Computer and Information Science Northeastern University Eric S. Chan Oracle Abstract We

More information

ROWLBAC Representing Role Based Access Control in OWL

ROWLBAC Representing Role Based Access Control in OWL T. Finin A. Joshi J. Niu R. Sandhu W. Winsborough B. Thuraisingham a presentation by Jeremy Clark ROWLBAC Representing Role Based Access Control in OWL Introduction This paper examines the relationship

More information

GraphOnto: OWL-Based Ontology Management and Multimedia Annotation in the DS-MIRF Framework

GraphOnto: OWL-Based Ontology Management and Multimedia Annotation in the DS-MIRF Framework GraphOnto: OWL-Based Management and Multimedia Annotation in the DS-MIRF Framework Panagiotis Polydoros, Chrisa Tsinaraki and Stavros Christodoulakis Lab. Of Distributed Multimedia Information Systems,

More information

SADI Semantic Web Services

SADI Semantic Web Services SADI Semantic Web Services London, UK 8 December 8 2011 SADI Semantic Web Services Instructor: Luke McCarthy http:// sadiframework.org/training/ 2 Contents 2.1 Introduction to Semantic Web Services 2.1

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

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

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

Ontology Development. Qing He

Ontology Development. Qing He A tutorial report for SENG 609.22 Agent Based Software Engineering Course Instructor: Dr. Behrouz H. Far Ontology Development Qing He 1 Why develop an ontology? In recent years the development of ontologies

More information

Modeling LMF compliant lexica in OWL-DL

Modeling LMF compliant lexica in OWL-DL 19 21 June 11th International conference DIN Deutsches Institut für Normung e. V. Modeling LMF compliant lexica in OWL-DL Malek Lhioui 1, Kais Haddar 1 and Laurent Romary 2 1 : Multimedia, InfoRmation

More information

Semistructured Data Management Part 3 (Towards the) Semantic Web

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

More information

Lecture Telecooperation. D. Fensel Leopold-Franzens- Universität Innsbruck

Lecture Telecooperation. D. Fensel Leopold-Franzens- Universität Innsbruck Lecture Telecooperation D. Fensel Leopold-Franzens- Universität Innsbruck First Lecture: Introduction: Semantic Web & Ontology Introduction Semantic Web and Ontology Part I Introduction into the subject

More information

H1 Spring C. A service-oriented architecture is frequently deployed in practice without a service registry

H1 Spring C. A service-oriented architecture is frequently deployed in practice without a service registry 1. (12 points) Identify all of the following statements that are true about the basics of services. A. Screen scraping may not be effective for large desktops but works perfectly on mobile phones, because

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

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

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

Description Logic. Eva Mráková,

Description Logic. Eva Mráková, Description Logic Eva Mráková, glum@fi.muni.cz Motivation: ontology individuals/objects/instances ElizabethII Philip Philip, Anne constants in FOPL concepts/classes/types Charles Anne Andrew Edward Male,

More information