RDF Resource Description Framework
|
|
|
- Sherilyn Walsh
- 9 years ago
- Views:
Transcription
1 RDF Resource Description Framework Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group
2 Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 2
3 SW Technology Stack F. Corno, L. Farinetti - Politecnico di Torino 3
4 A common language for describing resources The Resource Description Framework (RDF) is a language for representing information about resources in the World Wide Web Particularly intended for representing metadata about Web resources RDF can also be used to represent information about things that can be identified on the Web, even when they cannot be directly retrieved on the Web F. Corno, L. Farinetti - Politecnico di Torino 4
5 RDF Design goals having a simple data model having formal semantics and provable inference using an extensible URI-based vocabulary using an XML-based syntax supporting use of XML schema datatypes allowing anyone to make statements about any resource F. Corno, L. Farinetti - Politecnico di Torino 5
6 Simple yet powerful RDF has an abstract syntax that reflects a simple graph-based data model RDF has formal semantics with a rigorously defined notion of entailment providing a basis for well founded deductions F. Corno, L. Farinetti - Politecnico di Torino 6
7 Basic principles (1/2) Clearly separate Model structure (RDF graph) Interpretation Semantics (Entailment) Concrete Syntaxes (XML, TN, N3, ) Only two datatypes URI/URIref: everything is a URI Literal String or other XSD datatype F. Corno, L. Farinetti - Politecnico di Torino 7
8 Basic principles (2/2) Integrated with the Web Uses XMLSchema datatypes May reference http-retrievable resources Open world assumption Allows anyone to make statements about any resource No guaranteed completeness No guaranteed consistency F. Corno, L. Farinetti - Politecnico di Torino 8
9 Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 9
10 Key concepts Graph data model URI-based vocabulary Datatypes Literals XML serialization syntax Expression of simple facts Entailment F. Corno, L. Farinetti - Politecnico di Torino 10
11 Graph data model Triple: subject, predicate, object Expression: collection of triples RDF graph F. Corno, L. Farinetti - Politecnico di Torino 11
12 Terminology and constraints Subject and Object are called Nodes Predicate and Property are synonyms Special unnamed nodes: Blank Nodes Subject may be: URI reference or blank node Predicate must be: URI reference Object may be: URI reference, literal or blank node F. Corno, L. Farinetti - Politecnico di Torino 12
13 The Triples and the Graph The assertion of an RDF triple says that some relationship, indicated by the predicate, holds between the things denoted by subject and object of the triple. The assertion of an RDF graph amounts to asserting all the triples in it, so the meaning of an RDF graph is the conjunction (logical AND) of the statements corresponding to all the triples it contains. F. Corno, L. Farinetti - Politecnico di Torino 13
14 Expression of Simple Facts Some simple facts indicate a relationship between two things one triple the predicate names the relationship the subject and object denote the two things F. Corno, L. Farinetti - Politecnico di Torino 14
15 Information in triples CompanyHomePage RDF PersonID FulvioCorno Homepage Relational database First order logic predicate HasCompanyHomePage( FulvioCorno, ) ; F. Corno, L. Farinetti - Politecnico di Torino 15
16 But... Relational database tables may have an arbitrary number of columns First order logic predicates may have an arbitrary number of places (arguments) RDF triples may only have one subject and one object Complex statements have to be decomposed for representation as RDF triples F. Corno, L. Farinetti - Politecnico di Torino 16
17 Example Represent in RDF the following statement "there is a Person identified by whose name is Eric Miller, whose address is [email protected], and whose title is Dr." F. Corno, L. Farinetti - Politecnico di Torino 17
18 Example F. Corno, L. Farinetti - Politecnico di Torino 18
19 URIs represent (almost) everything Nodes (subject or object) individuals: Eric Miller, identified by kinds of things: Person, identified by rson values of properties: as the value of the mailbox property Predicates properties of things: mailbox, identified by ilbox F. Corno, L. Farinetti - Politecnico di Torino 19
20 Non-URI information Literals (only as objects, never as subjects) The name "Eric Miller" The title "Dr." May be localized May be typed with XMLSchema data types "27"^^< "37"^^xsd:integer " "^^xsd:date F. Corno, L. Farinetti - Politecnico di Torino 20
21 URIs are more than URLs URL = uniform resource locator Designed to locate, and retrieve, resources on the web URI = uniform resource identifier More general Identifies also resources that do not have a network location Every person or organization can independently create URIs, and use them to identify things (either concrete or abstract) F. Corno, L. Farinetti - Politecnico di Torino 21
22 URIref = URI#fragmet URIref = URI reference A single URI may define many different resources E.g., the URI references an RDF file with many definitions To identify a single fragment inside the URI, we use the # notation E.g., F. Corno, L. Farinetti - Politecnico di Torino 22
23 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> F. Corno, L. Farinetti - Politecnico di Torino 23
24 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> Name space shortcut. Equivalent to F. Corno, L. Farinetti - Politecnico di Torino 24
25 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> Subject Predicate Object F. Corno, L. Farinetti - Politecnico di Torino 25
26 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> Subject Predicate Object F. Corno, L. Farinetti - Politecnico di Torino 26
27 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> Subject Predicate Object F. Corno, L. Farinetti - Politecnico di Torino 27
28 RDF/XML Syntax <?xml version="1.0"?> <rdf:rdf xmlns:rdf=" xmlns:contact=" <contact:person rdf:about=" <contact:fullname>eric Miller</contact:fullName> <contact:mailbox <contact:personaltitle>dr.</contact:personaltitle> </contact:person> </rdf:rdf> Subject Predicate Object rdf:type F. Corno, L. Farinetti - Politecnico di Torino 28
29 Triple or Turtle notation < < "Eric Miller". < < < < "Dr.". < < < F. Corno, L. Farinetti - Politecnico di Torino 29
30 Triple or Turtle notation (abbreviated) w3people:em#me contact:fullname "Eric Miller". w3people:em#me contact:mailbox w3people:em#me contact:personaltitle "Dr.". w3people:em#me rdf:type contact:person. More details on the turtle syntax and further abbreviations will be shown in the SPARQL chapter F. Corno, L. Farinetti - Politecnico di Torino 30
31 rdf: dc: : < < dc:title "RDF/XML Syntax Specification (Revised)" ; :editor [ :fullname "Dave Beckett"; :homepage < ]. F. Corno, L. Farinetti - Politecnico di Torino 31
32 Hands-on exercise Model as an RDF graph a subset of the following assertions: Oracle Corporation (NASDAQ: ORCL) and Sun Microsystems (NASDAQ: JAVA) announced today they have entered into a definitive agreement under which Oracle will acquire Sun common stock for $9.50 per share in cash. [ ] Sun Microsystems, Inc. (NASDAQ: JAVA) develops the technologies that power the global marketplace. [...] Sun can be found in more than 100 countries and on the Web at Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. For more information about Oracle, please visit our Web site at Source: F. Corno, L. Farinetti - Politecnico di Torino 32
33 Outline RDF Design objectives RDF General structure Serialization: XML XML Serialization Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 33
34 RDF vocabularies A set of URIref is called vocabulary Common vocabularies collect URIrefs under the same name space, so that all nodes may be reached with QNames such as: prefix:nodename The name space is chosen to represent the organization responsible for the definitions Every elaboration in RDF must first resolve all prefixes, so that only absolute URIs are used by the algorithms F. Corno, L. Farinetti - Politecnico di Torino 34
35 Common prefixes prefix rdf:, namespace URI: prefix rdfs:, namespace URI: prefix dc:, namespace URI: prefix owl:, namespace URI: prefix xsd:, namespace URI: prefix ex:, namespace URI: (or F. Corno, L. Farinetti - Politecnico di Torino 35
36 Vocabulary reuse Extremely easy to re-use other vocabularies in our RDF graph... just define a prefix to point to the proper name space When using a predicate, always check if its semantics is already satisfied by some property defined in well-known vocabularies Never re-define, with a different URIref, some already existing predicate The same applies for names, but with somewhat less importance. F. Corno, L. Farinetti - Politecnico di Torino 36
37 Hands-on: let's explore some useful vocabularies... Dublin Core Specification: Namespace: xmlns:dc=" FOAF Specification: Namespace: xmlns:foaf=" F. Corno, L. Farinetti - Politecnico di Torino 37
38 Hands-on: let's explore some useful vocabularies... Recent Dublin Core enhancement: DCMI Metadata Terms Specification: Namespace: xmlns:dcterms=" RSS 1.0 Information: F. Corno, L. Farinetti - Politecnico di Torino 38
39 Blank nodes RDF just supports triples, i.e., binary relationships Higher-order relationships must be broken down into many binary pieces Breaking down means creating additional nodes Such additional nodes will never be referenced from outside the current sub-graph the don t need a name! A subject or object may be left blank F. Corno, L. Farinetti - Politecnico di Torino 39
40 Example exstaff:85740 exterms:address exaddressid: exaddressid:85740 exterms:street "1501 Grant Avenue". exaddressid:85740 exterms:city "Bedford". exaddressid:85740 exterms:state "Massachusetts". exaddressid:85740 exterms:postalcode "01730". F. Corno, L. Farinetti - Politecnico di Torino 40
41 Example with blank node exstaff:85740 exterms:address _:johnaddress. _:johnaddress exterms:street "1501 Grant Avenue". _:johnaddress exterms:city "Bedford". _:johnaddress exterms:state "Massachusetts". _:johnaddress exterms:postalcode "01730". F. Corno, L. Farinetti - Politecnico di Torino 41
42 Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 42
43 Details on the XML serialization The XML document has a root node <rdf:rdf> Specifying the subject: <rdf:description rdf:about= SubjectURIref > Specifying properties, in the body of the rdf:description tag <ex:propertyname>objectliteral</ex:propertyname> <ex:otherproperty rdf:resource= ObjectURIref /> Several triples sharing the same subject may be collected in the same rdf:description body F. Corno, L. Farinetti - Politecnico di Torino 43
44 Examples 1. <?xml version="1.0"?> 2. <rdf:rdf xmlns:rdf=" 3. xmlns:exterms=" 4. <rdf:description rdf:about=" 5. <exterms:creation-date>august 16, 1999</exterms:creation-date> 6. </rdf:description> 7. </rdf:rdf> F. Corno, L. Farinetti - Politecnico di Torino 44
45 Examples 1. <?xml version="1.0"?> 2. <rdf:rdf xmlns:rdf=" 3. xmlns:exterms=" 4. <rdf:description rdf:about=" 5. <exterms:creation-date>august 16, 1999</exterms:creation-date> 6. </rdf:description> 7. </rdf:rdf> 1. <?xml version="1.0"?> 2. <rdf:rdf xmlns:rdf=" 3. xmlns:dc=" 4. xmlns:exterms=" 5. <rdf:description rdf:about=" 6. <exterms:creation-date>august 16, 1999</exterms:creation-date> 7. <dc:language>en</dc:language> 8. <dc:creator rdf:resource=" 9. </rdf:description> 10. </rdf:rdf> F. Corno, L. Farinetti - Politecnico di Torino 45
46 Blank nodes in XML: rdf:nodeid 5. <rdf:description rdf:about=" 6. <dc:title>rdf/xml Syntax Specification (Revised)</dc:title> 7. <exterms:editor rdf:nodeid="abc"/> 8. </rdf:description> 9. <rdf:description rdf:nodeid="abc"> 10. <exterms:fullname>dave Beckett</exterms:fullName> 11. <exterms:homepage rdf:resource=" 12. </rdf:description> F. Corno, L. Farinetti - Politecnico di Torino 46
47 Typed literals in XML ex:index.html exterms:creation-date " "^^xsd:date. 4. <rdf:description rdf:about=" 5. <exterms:creation-date rdf:datatype= " </exterms:creation-date> 6. </rdf:description> F. Corno, L. Farinetti - Politecnico di Torino 47
48 Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 48
49 RDF Data structures Containers (unbounded) rdf:bag (unordered) rdf:seq (ordered) rdf:alt (one-of) Semantically equivalent, the different beween Bag/Seq/Alt is only in its intended usage Does not limit the member elements to the ones declared Collections (bounded) rdf:list Only the mentioned elements are part of the collection F. Corno, L. Farinetti - Politecnico di Torino 49
50 Reification It may be sometimes useful to assert a statement about another statement. For example, I want to say who added a fact (a triple) to my set of statements In this case, instead of writing the triple, we describe the triple by Giving a name to the statement (rdf:statement) Giving the elements of the triple with rdf:subject, rdf:predicate, rdf:object F. Corno, L. Farinetti - Politecnico di Torino 50
51 Example exproducts:item10245 exterms:weight "2.4"^^xsd:decimal. reification exproducts:triple12345 rdf:type rdf:statement. exproducts:triple12345 rdf:subject exproducts:item exproducts:triple12345 rdf:predicate exterms:weight. exproducts:triple12345 rdf:object "2.4"^^xsd:decimal. and now the statement has a URIref: this.rdf#triple12345 F. Corno, L. Farinetti - Politecnico di Torino 51
52 Example (cont.) exproducts:triple12345 rdf:type rdf:statement. exproducts:triple12345 rdf:subject exproducts:item exproducts:triple12345 rdf:predicate exterms:weight. exproducts:triple12345 rdf:object "2.4"^^xsd:decimal. exproducts:triple12345 dc:creator exstaff: We expressed the dc:creator of the previous statement! F. Corno, L. Farinetti - Politecnico di Torino 52
53 Entailment An RDF expression A is said to entail another RDF expression B if every possible arrangement of things in the world that makes A true also makes B true. On this basis, if the truth of A is presumed or demonstrated then the truth of B can be inferred. The mechanism for defining formal semantics for RDF The ultimate mechanism for creating reasoning engines in the semantic web Never asserts anything about the things in the world, only about the propagation of truth in RDF statements/assertions More on this in the RDF Semantics chapter! F. Corno, L. Farinetti - Politecnico di Torino 53
54 Outline RDF Design objectives RDF General structure RDF Vocabularies Serialization: XML Semantic features RDF Schema F. Corno, L. Farinetti - Politecnico di Torino 54
55 RDF Schema Special RDF vocabulary for describing the properties and the content of... RDF vocabularies Think of a definition (schema) of the nodes and predicates used in an RDF document. However, this definition is expressed in RDF, too, by using the RDFS vocabulary With RDFS we may restrict the usage of RDF nodes and predicates, by introducing coherency and a sort of data types RDF Schema provides a type system for RDF F. Corno, L. Farinetti - Politecnico di Torino 55
56 RDFS nature RDFS does not specify a vocabulary of descriptive properties such as author RDFS specifies mechanisms that may be used to name and describe properties and the classes of resource they describe Similar to the type systems of object-oriented programming languages, but: OO languages define a class in terms of the properties its instances may have RDFS describes properties in terms of the classes of resource to which they apply (domain & range) F. Corno, L. Farinetti - Politecnico di Torino 56
57 Example OO language define a class eg:book with an attribute called eg:author of type eg:person RDFS define the eg:author property to have a domain of eg:document and a range of eg:person Why? Easy for others to subsequently define additional properties with a domain of eg:document or a range of eg:person This can be done without the need to re-define the original description of these classes It allows anyone to extend the description of existing resources, one of the architectural principles of the Web F. Corno, L. Farinetti - Politecnico di Torino 57
58 Defining Classes in RDFS rdf:type Defines the type of the subject node The object of type must be a class rdfs:class The set of all possible classes A class is any resource having an rdf:type property whose value is the resource rdfs:class ex:motorvehicle rdf:type rdfs:class. exthings:companycar rdf:type ex:motorvehicle. F. Corno, L. Farinetti - Politecnico di Torino 58
59 Defining class hierarchies rdfs:subclassof Defines a narrower class Any instance of class ex:van is also an instance of class ex:motorvehicle A transitive predicate ex:motorvehicle rdf:type rdfs:class. exthings:companycar rdf:type ex:motorvehicle. ex:van rdf:type rdfs:class. ex:truck rdf:type rdfs:class. ex:van rdfs:subclassof ex:motorvehicle. F. Corno, L. Farinetti - Politecnico di Torino 59
60 Class hierarchies F. Corno, L. Farinetti - Politecnico di Torino 60
61 Defining properties in RDFS rdf:property Any URIref used as a predicate has an rdf:type of rdf:property rdfs:domain, rdfs:range Define the domain and the range of the property Domain and range are Classes rdfs:subpropertyof Defines hierarchies of properties F. Corno, L. Farinetti - Politecnico di Torino 61
62 Example <rdf:property rdf:id="registeredto"> <rdfs:domain rdf:resource="#motorvehicle"/> <rdfs:range rdf:resource="#person"/> </rdf:property> <rdf:property rdf:id="rearseatlegroom"> <rdfs:domain rdf:resource="#passengervehicle"/> <rdfs:range rdf:resource="&xsd;integer"/> </rdf:property> <rdfs:class rdf:id="person"/> <rdfs:datatype rdf:about="&xsd;integer"/> F. Corno, L. Farinetti - Politecnico di Torino 62
63 RDF/RDFS Classes F. Corno, L. Farinetti - Politecnico di Torino 63
64 RDF/RDFS Properties F. Corno, L. Farinetti - Politecnico di Torino 64
65 References RDF Primer W3C Recommendation 10 February Resource Description Framework (RDF): Concepts and Abstract Syntax W3C Recommendation 10 February RDF Vocabulary Description Language 1.0: RDF Schema W3C Recommendation 10 February F. Corno, L. Farinetti - Politecnico di Torino 65
66 License This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. To view a copy of this license, visit or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. F. Corno, L. Farinetti - Politecnico di Torino 66
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
13 RDFS and SPARQL. Internet Technology. MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication.
MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 13 RDFS and SPARQL 2 RDF - Summary Main characteristics of RDF: Abstract syntax based
Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo
DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo Expected Outcomes You will learn: Basic concepts related to ontologies Semantic model Semantic web Basic features of RDF and RDF
12 The Semantic Web and RDF
MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 12 The Semantic Web and RDF 2 n the previous episodes... A (video) summary: Michael
Grids, Logs, and the Resource Description Framework
Grids, Logs, and the Resource Description Framework Mark A. Holliday Department of Mathematics and Computer Science Western Carolina University Cullowhee, NC 28723, USA [email protected] Mark A. Baker,
OSLC Primer Learning the concepts of OSLC
OSLC Primer Learning the concepts of OSLC It has become commonplace that specifications are precise in their details but difficult to read and understand unless you already know the basic concepts. A good
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
Network Graph Databases, RDF, SPARQL, and SNA
Network Graph Databases, RDF, SPARQL, and SNA NoCOUG Summer Conference August 16 2012 at Chevron in San Ramon, CA David Abercrombie Data Analytics Engineer, Tapjoy [email protected] About me
RDF Support in Oracle Oracle USA Inc.
RDF Support in Oracle Oracle USA Inc. 1. Introduction Resource Description Framework (RDF) is a standard for representing information that can be identified using a Universal Resource Identifier (URI).
Query engine for massive distributed ontologies using MapReduce
Query engine for massive distributed ontologies using MapReduce Submitted by Juan Esteban Maya Alvarez [email protected] Information and Media Technologies Matriculation Number 20729239 Supervised
technische universiteit eindhoven WIS & Engineering Geert-Jan Houben
WIS & Engineering Geert-Jan Houben Contents Web Information System (WIS) Evolution in Web data WIS Engineering Languages for Web data XML (context only!) RDF XML Querying: XQuery (context only!) RDFS SPARQL
How To Create A Federation Of A Federation In A Microsoft Microsoft System (R)
Fed4FIRE / Open-Multinet Resource Description Playground Alexander Willner Overview 2014-05-21 Overall Goal Federated Infrastructure Description and Discovery Language (FIDDLE) Context Assumptions and
RDF y SPARQL: Dos componentes básicos para la Web de datos
RDF y SPARQL: Dos componentes básicos para la Web de datos Marcelo Arenas PUC Chile & University of Oxford M. Arenas RDF y SPARQL: Dos componentes básicos para la Web de datos Valladolid 2013 1 / 61 Semantic
SPARQL: Un Lenguaje de Consulta para la Web
SPARQL: Un Lenguaje de Consulta para la Web Semántica Marcelo Arenas Pontificia Universidad Católica de Chile y Centro de Investigación de la Web M. Arenas SPARQL: Un Lenguaje de Consulta para la Web Semántica
A Framework for Collaborative Project Planning Using Semantic Web Technology
A Framework for Collaborative Project Planning Using Semantic Web Technology Lijun Shen 1 and David K.H. Chua 2 Abstract Semantic web technology has become an enabling technology for machines to automatically
How To Write A Rdf Database In A Relational Database With A Statement Table
Efficient RDF Storage and Retrieval in Jena2 Kevin Wilkinson 1, Craig Sayers 1, Harumi Kuno 1, Dave Reynolds 2 HP Laboratories 1 1501 Page Mill Road Palo Alto, CA, 94304 USA 2 Filton Road, Stoke Gifford
Information Technology for KM
On the Relations between Structural Case-Based Reasoning and Ontology-based Knowledge Management Ralph Bergmann & Martin Schaaf University of Hildesheim Data- and Knowledge Management Group www.dwm.uni-hildesheim.de
OWL based XML Data Integration
OWL based XML Data Integration Manjula Shenoy K Manipal University CSE MIT Manipal, India K.C.Shet, PhD. N.I.T.K. CSE, Suratkal Karnataka, India U. Dinesh Acharya, PhD. ManipalUniversity CSE MIT, Manipal,
Ampersand and the Semantic Web
Ampersand and the Semantic Web The Ampersand Conference 2015 Lloyd Rutledge The Semantic Web Billions and billions of data units Triples (subject-predicate-object) of URI s Your data readily integrated
Semantic Interoperability
Ivan Herman Semantic Interoperability Olle Olsson Swedish W3C Office Swedish Institute of Computer Science (SICS) Stockholm Apr 27 2011 (2) Background Stockholm Apr 27, 2011 (2) Trends: from
Object-Process Methodology as a basis for the Visual Semantic Web
Object-Process Methodology as a basis for the Visual Semantic Web Dov Dori Technion, Israel Institute of Technology, Haifa 32000, Israel [email protected], and Massachusetts Institute of Technology,
Developing Web 3.0. Nova Spivak & Lew Tucker http://radarnetworks.com/ Tim Boudreau http://weblogs.java.net/blog/timboudreau/
Developing Web 3.0 Nova Spivak & Lew Tucker http://radarnetworks.com/ Tim Boudreau http://weblogs.java.net/blog/timboudreau/ Henry Story http://blogs.sun.com/bblfish 2007 JavaOne SM Conference Session
Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata
Standard for Information and Image Management Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata Association for Information and
Introduction to Web Services
Department of Computer Science Imperial College London CERN School of Computing (icsc), 2005 Geneva, Switzerland 1 Fundamental Concepts Architectures & escience example 2 Distributed Computing Technologies
Extending Policy Languages to the Semantic Web
Extending Policy Languages to the Semantic Web E. Damiani, S. De Capitani di Vimercati, C. Fugazza, and P. Samarati DTI - Università di Milano 26013 Crema - Italy {damiani,decapita,samarati}@dti.unimi.it,
Defining a benchmark suite for evaluating the import of OWL Lite ontologies
UNIVERSIDAD POLITÉCNICA DE MADRID FACULTAD DE INFORMÁTICA FREE UNIVERSITY OF BOLZANO FACULTY OF COMPUTER SCIENCE EUROPEAN MASTER IN COMPUTATIONAL LOGIC MASTER THESIS Defining a benchmark suite for evaluating
REPRESENTATION AND CERTIFICATION
REPRESENTATION AND CERTIFICATION OF DATA QUALITY ON THE WEB (Research Paper) Cinzia Cappiello Chiara Francalanci Barbara Pernici Politecnico di Milano, Milano, Italy {cappiell, francala, pernici}@elet.polimi.it
XMP Specification. ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000 http://www.adobe.
September XMP Specification 2005 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000 http://www.adobe.com Copyright 2000 2005 Adobe Systems Incorporated.
Semantics and Ontology of Logistic Cloud Services*
Semantics and Ontology of Logistic Cloud s* Dr. Sudhir Agarwal Karlsruhe Institute of Technology (KIT), Germany * Joint work with Julia Hoxha, Andreas Scheuermann, Jörg Leukel Usage Tasks Query Execution
Getting Started Guide
TopBraid Composer Getting Started Guide Version 2.0 July 21, 2007 TopBraid Composer, Copyright 2006 TopQuadrant, Inc. 1 of 58 Revision History Date Version Revision August 1, 2006 1.0 Initial version September
Integrating and Exchanging XML Data using Ontologies
Integrating and Exchanging XML Data using Ontologies Huiyong Xiao and Isabel F. Cruz Department of Computer Science University of Illinois at Chicago {hxiao ifc}@cs.uic.edu Abstract. While providing a
On Partial Encryption of RDF-Graphs
On Partial Encryption of RDF-Graphs Mark Giereth Institute for Intelligent Systems, University of Stuttgart, 70569 Stuttgart, Germany [email protected] Abstract. In this paper a method for Partial
Big Data Analytics. Rasoul Karimi
Big Data Analytics Rasoul Karimi Information Systems and Machine Learning Lab (ISMLL) Institute of Computer Science University of Hildesheim, Germany Big Data Analytics Big Data Analytics 1 / 1 Introduction
SPARQL By Example: The Cheat Sheet
SPARQL By Example: The Cheat Sheet Accompanies slides at: http://www.cambridgesemantics.com/2008/09/sparql-by-example/ Comments & questions to: Lee Feigenbaum VP Technology
Introduction to the Semantic Web. Semantic tecnologies a quick overview Fulvio Corno Politecnico di Torino
Introduction to the Semantic Web Semantic tecnologies a quick overview Fulvio Corno Politecnico di Torino Semantic Web Web second generation Web 3.0 http://www.w3.org/2001/sw/ Conceptual structuring of
Formalization of the CRM: Initial Thoughts
Formalization of the CRM: Initial Thoughts Carlo Meghini Istituto di Scienza e Tecnologie della Informazione Consiglio Nazionale delle Ricerche Pisa CRM SIG Meeting Iraklio, October 1st, 2014 Outline Overture:
How To Understand And Understand Common Lisp
Language-Oriented Programming am Beispiel Lisp Arbeitskreis Objekttechnologie Norddeutschland HAW Hamburg, 6.7.2009 Prof. Dr. Bernhard Humm Hochschule Darmstadt, FB Informatik und Capgemini sd&m Research
DLDB: Extending Relational Databases to Support Semantic Web Queries
DLDB: Extending Relational Databases to Support Semantic Web Queries Zhengxiang Pan (Lehigh University, USA [email protected]) Jeff Heflin (Lehigh University, USA [email protected]) Abstract: We
Semantic Web Languages: RDF vs. SOAP Serialisation
: University of Dortmund Computer Science VIII [email protected] : Why look at something else? Is RDF(S) not sufficient? What is SOAP? Why is SOAP important? Is SOAP Serialisation really an alternative
The Yin/Yang Web: A Unified Model for XML Syntax and RDF Semantics
IEEE TANACTION ON KNOWLEDGE AND DATA ENGINEEING 1 The Yin/Yang Web: A Unified Model for XML yntax and DF emantics Peter Patel-chneider, Jérôme iméon Bell Laboratories 600 Mountain Avenue Murray Hill, 07974
A Review and Comparison of Rule Languages and Rule-based Inference Engines for the Semantic Web
A Review and Comparison of and -based Inference Engines for the Semantic Web Thanyalak Rattanasawad, Kanda Runapongsa Saikaew Department of Computer Engineering, Faculty of Engineering, Khon Kaen University,
Fulvio Corno, Laura Farinetti. Dipartimento di Automatica e Informatica
SPARQL - Query Language for RDF Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.itpolito The new Semantic Web vision
ARC: appmosphere RDF Classes for PHP Developers
ARC: appmosphere RDF Classes for PHP Developers Benjamin Nowack appmosphere web applications, Kruppstr. 100, 45145 Essen, Germany [email protected] Abstract. ARC is an open source collection of lightweight
Creating an RDF Graph from a Relational Database Using SPARQL
Creating an RDF Graph from a Relational Database Using SPARQL Ayoub Oudani, Mohamed Bahaj*, Ilias Cherti Department of Mathematics and Informatics, University Hassan I, FSTS, Settat, Morocco. * Corresponding
A Secure Mediator for Integrating Multiple Level Access Control Policies
A Secure Mediator for Integrating Multiple Level Access Control Policies Isabel F. Cruz Rigel Gjomemo Mirko Orsini ADVIS Lab Department of Computer Science University of Illinois at Chicago {ifc rgjomemo
JOURNAL OF COMPUTER SCIENCE AND ENGINEERING
Exploration on Service Matching Methodology Based On Description Logic using Similarity Performance Parameters K.Jayasri Final Year Student IFET College of engineering [email protected] R.Rajmohan
Extending the Linked Data API with RDFa
Extending the Linked Data API with RDFa Steve Battle 1, James Leigh 2, David Wood 2 1 Gloze Ltd, UK [email protected] 2 3 Round Stones, USA James, [email protected] Linked data is about connecting
Representation of E-documents in AIDA Project
Representation of E-documents in AIDA Project Diana Berbecaru Marius Marian Dip. di Automatica e Informatica Politecnico di Torino Corso Duca degli Abruzzi 24, 10129 Torino, Italy Abstract Initially developed
Layering the Semantic Web: Problems and Directions
First International Semantic Web Conference (ISWC2002), Sardinia, Italy, June 2002. Layering the Semantic Web: Problems and Directions Peter F. Patel-Schneider and Dieter Fensel Bell Labs Research Murray
DISCOVERING RESUME INFORMATION USING LINKED DATA
DISCOVERING RESUME INFORMATION USING LINKED DATA Ujjal Marjit 1, Kumar Sharma 2 and Utpal Biswas 3 1 C.I.R.M, University Kalyani, Kalyani (West Bengal) India [email protected] 2 Department of Computer
Heterogeneous databases mediation
MASTER IN COMPUTER SCIENCE UBIQUITOUS NETWORKING Heterogeneous databases mediation Master Thesis Report Laboratoire d Informatique des Signaux et Systèmes de Sophia-Antipolis Team MODALIS 29/08/2014 Author:
Managing enterprise applications as dynamic resources in corporate semantic webs an application scenario for semantic web services.
Managing enterprise applications as dynamic resources in corporate semantic webs an application scenario for semantic web services. Fabien Gandon, Moussa Lo, Olivier Corby, Rose Dieng-Kuntz ACACIA in short
A Semantic web approach for e-learning platforms
A Semantic web approach for e-learning platforms Miguel B. Alves 1 1 Laboratório de Sistemas de Informação, ESTG-IPVC 4900-348 Viana do Castelo. [email protected] Abstract. When lecturers publish contents
Types and Annotations for CIDOC CRM Properties
Types and Annotations for CIDOC CRM Properties Vladimir Alexiev Ontotext Corp, 135 Tsarigradsko Shosse Blvd, Sofia, Bulgaria [email protected] Abstract. The CIDOC CRM provides an extensive
Ontological Modeling: Part 6
Ontological Modeling: Part 6 Terry Halpin LogicBlox and INTI International University This is the sixth in a series of articles on ontology-based approaches to modeling. The main focus is on popular ontology
Linked Data Interface, Semantics and a T-Box Triple Store for Microsoft SharePoint
Linked Data Interface, Semantics and a T-Box Triple Store for Microsoft SharePoint Christian Fillies 1 and Frauke Weichhardt 1 1 Semtation GmbH, Geschw.-Scholl-Str. 38, 14771 Potsdam, Germany {cfillies,
CST6445: Web Services Development with Java and XML Lesson 1 Introduction To Web Services 1995 2008 Skilltop Technology Limited. All rights reserved.
CST6445: Web Services Development with Java and XML Lesson 1 Introduction To Web Services 1995 2008 Skilltop Technology Limited. All rights reserved. Opening Night Course Overview Perspective Business
Taming Big Data Variety with Semantic Graph Databases. Evren Sirin CTO Complexible
Taming Big Data Variety with Semantic Graph Databases Evren Sirin CTO Complexible About Complexible Semantic Tech leader since 2006 (née Clark & Parsia) software, consulting W3C leadership Offices in DC
Integration and interoperability of data sources: forward into the new century
Integration and interoperability of data sources: forward into the new century Jaroslav POKORNÝ Charles University, Czech Republic e-mail: [email protected] Abstract: The goal of the next years
Data Store Interface Design and Implementation
WDS'07 Proceedings of Contributed Papers, Part I, 110 115, 2007. ISBN 978-80-7378-023-4 MATFYZPRESS Web Storage Interface J. Tykal Charles University, Faculty of Mathematics and Physics, Prague, Czech
We have big data, but we need big knowledge
We have big data, but we need big knowledge Weaving surveys into the semantic web ASC Big Data Conference September 26 th 2014 So much knowledge, so little time 1 3 takeaways What are linked data and the
TopBraid Application Development Quickstart Guide. Version 3.3
TopBraid Application Development Quickstart Guide Version 3.3 October 27, 2010 2 TopBraid Application Development Quickstart Guide Introduction TopBraid Application Development Quickstart Guide TOC 3 Contents
Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web
Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web Corey A Harper University of Oregon Libraries Tel: +1 541 346 1854 Fax:+1 541 346 3485 [email protected]
Masterarbeit. Entwicklung und Implementierung eines Domain Brokers für das Semantic Web
Georg-August-Universität Göttingen Zentrum für Informatik ISSN 1612-6793 Nummer ZFI-BM-2006-35 Masterarbeit im Studiengang "Angewandte Informatik" Entwicklung und Implementierung eines Domain Brokers für
LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model
LINKED DATA EXPERIENCE AT MACMILLAN Building discovery services for scientific and scholarly content on top of a semantic data model 22 October 2014 Tony Hammond Michele Pasin Background About Macmillan
Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology
Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Hong-Linh Truong Institute for Software Science, University of Vienna, Austria [email protected] Thomas Fahringer
Standardontologie für Wissensmanagement
Projektergebnis Standardontologie für Wissensmanagement im SW-Engineering Projektidentifikation: Ergebnis ID: Arbeitspaket(e): Autor(en): Koordinator: WAVES Wissensaustausch bei der verteilten Entwicklung
dcml Data Center Markup Language Data Center Markup Language Framework Specification
dcml Data Center Markup Language Data Center Markup Language Framework Specification Draft Version 0.11 May 5, 2004, 2004 Change History Version Date Notes version 0.1 November 9, 2003 Initial draft version
BUSINESS VALUE OF SEMANTIC TECHNOLOGY
BUSINESS VALUE OF SEMANTIC TECHNOLOGY Preliminary Findings Industry Advisory Council Emerging Technology (ET) SIG Information Sharing & Collaboration Committee July 15, 2005 Mills Davis Managing Director
Building the Semantic Web on XML
The First International Semantic Web Conference (ISWC2002), Sardinia, Italy, June 2002. Building the Semantic Web on XML Peter F. Patel-Schneider and Jérôme Siméon Bell Labs Research, Murray Hill, NJ,
