Building Interoperable Metadata

Size: px
Start display at page:

Download "Building Interoperable Metadata"

Transcription

1 Building Interoperable Metadata Hal Abelson, Ben Adida MIT Computer Science & Artificial Intelligence Laboratory 8 March

2 the important thing about the semantic web is the web part. paraphrased from Chris Welty, Dan Connolly, Hal Abelson. 2

3 "If you think of semantic web as an interoperability technology, then it becomes capable of serendipitous behavior, of opportunism." Ora Lassila, yesterday. 3

4 Why You Should Care The web really works because it is interoperable. What s true for human-rendered data is true for machine-readable metadata. So how can web publishers make metadata interoperable? 4

5 Talk Outline What is Web Interoperability? Technology for Web Metadata Real-World Examples Principles of Interoperable Metadata 5

6 Interoperability 6

7 Technorati Yahoo Ulrich 7

8 Gada.be Technorati 8

9 Single-App Interoperability 9

10 Lessig Blog Slashdot Boing Boing 10

11 11

12 Multi-App Interoperability 12

13 Lessig Blog 13

14 a Metadata Nirvana 14

15 shutr Web Publishers Tool Builders MyCal Desktop Calendar DeskBlog All Your Blogs Users Ulrich Ursula 15

16 Meeting the Players 16

17 Web Publishers shutr 17

18 Tool Builders DeskBlog All Your Blogs MyCal Desktop Calendar 18

19 Users Ulrich Ursula 19

20 They all want to share data as easily as possible. 20

21 21

22 <h2>great New Sushi Place</h2> <p> it was amazing, I tell you. The freshest fish I've seen in years. And the toro... </p> licensed under a <a href= >CC License</a>. 22

23 shutr shutr Attribution: 23

24 24

25 DeskBlog All Your Blogs Ursula DeskBlog 25

26 Ursula License: Author: Ulrich 26

27 MyCal Desktop Calendar Ursula MyCal 27

28 Principles of Interoperable Metadata 28

29 Principle: Publisher Independence shutr Trackbacks URL commenting on Camera and Lens Info Resolution, Size, etc.. 29

30 Principle: Data Reuse <h2>great New Sushi Place</h2> <p> it was amazing, I tell you. The freshest fish I've seen in years. And the toro... </p> licensed under a <a href= >CC License</a>. 30

31 Principle: Self-Containment License: Author: Ulrich 31

32 Principle: Schema Modularity shutr DeskBlog All Your Blogs 32

33 Principle: Evolvability shutr DeskBlog All Your Blogs Equivalence 33

34 Publisher Independence Data Reuse Self-Containment Schema Modularity Schema Evolvability 34

35 Technology for Web Metadata XML RDF Microformats GRDDL RDF/A 35

36 XML shutr shutr 36

37 <head> <title>ulrich s Photos</title> <link rel= alternate href= /ulrich/photos/123.xml type= application/xml /> </head>... <img src= /ulrich/photos/123.jpg /> Beautiful Sushi. Taken on January 15th, licensed under a <a href= 2.5/ >CC License</a>. 37

38 <?xml version="1.0"?> <Photos xmlns= >... <Photo id= 123 > <title>beautiful Sushi</title> <creator>ulrich</creator> <date> </date> <license url= 2.5/ >... </Photo> </Photos> 38

39 <Photos xmlns= schema.xsd >... <Photo id= 123 > <title>sushi</title> <creator>ulrich</creator> <date> </date> <license url= licenses/by/2.5/ >... </Photo> </Photos> <Photos xmlns= schema.xsd >... <Photo id= 456 > <title>sushi 2</title> <creator>ursula</creator> <date> </date> <license url= licenses/by-nc/2.5/ >... </Photo> </Photos> 39

40 XML Report Card Publisher Independence Data Reuse Self- Containment Schema Modularity Evolvability everyone decides their own schema data is duplicated HTML and XML are separate files attributes are not reusable XSLT could be applied 40

41 RDF 41

42 RDF - A Refresher Everything is a triple: subject, property, object. Every item is either a URI or a literal (e.g. 3, Ben ) <> cc:license < <> dc:creator Ben Adida. </images/sunset.jpg> dc:title Sunset on the Beach. 42

43 <img src= /ulrich/photos/123.jpg /> Beautiful Sushi. Taken on January 15th, licensed under a <a href= >CC License</a>. <!-- <> dc:title Beautiful Sushi ; dc:creator Ulrich ; dc:date ; cc:license < --> 43

44 RDF Report Card Publisher Independence Data Reuse Self- Containment Schema Modularity Evolvability everyone decides their own schema data is duplicated HTML and RDF are entirely separate attributes are reusable additional fields are fine 44

45 Microformats DeskBlog 45

46 <head profile= >... <div class= hphoto > <img class= photo src= /ulrich/photos/123.jpg /> <span class= title > Beautiful Sushi. </span> Taken on <span class= date > January 15th, </span> licensed under a <a rel= license href= licenses/by/2.5/ >CC License</a>. </div> 46

47 If some usage of the web is too nascent to have converged, we can t easily codify it, so we choose to pass on the problem. Ryan King, Microformats.org 47

48 MF Report Card Publisher Independence Data Reuse Self- Containment Schema Modularity Evolvability schemas are tightly controlled HTML rendered data is reused Same file, but WHOLE file. attributes are not reusable, though some MFs are composable. may happen with GRDDL. 48

49 GRDDL XML Schema XSLT XML XSLT HTML XSLT XML RDF 49

50 <head profile=" <link rel="transformation" href="/grddl/extract-rdf.xsl" /> </head> <div class= photo > <img src= /ulrich/photos/123.jpg /> <span class= phototitle > Beautiful Sushi. </span> Taken on <span class= photodate >January 15th, 2006.</ span> licensed under a <a rel= license href= by/2.5/ >CC License</a>. </div> 50

51 GRDDL Report Card Publisher Independence Data Reuse Self- Containment Schema Modularity Evolvability everyone decides their schema, but it all depends on the transform. transform reuses data no correspondence attributes are reusable if exposed as RDF. additional fields are fine, but controlled by the transform 51

52 RDF/A Product of W3C s Task Force on RDF-in-HTML. Joint effort of HTML and SemWeb working groups. Working Draft of the RDF/A Primer available in the next 2 weeks. 52

53 <div xmlns:cc=" xmlns:dc=" about= /ulrich/photos/123.jpg > <img src= /ulrich/photos/123.jpg /> <span property="dc:title"> Beautiful Sushi. </span> taken by <span property="dc:creator"> Ulrich </span> on <span property="dc:date"> </span> licensed under a <a rel= cc:license href= licenses/by/2.5/ >CC License </a>. </div> 53

54 RDF/A Report Card Publisher Independence Data Reuse Self- Containment Schema Modularity Evolvability everyone decides their own schema similar to MF chunk of HTML is self-contained attributes are reusable same as RDF 54

55 RDF/A Elegant Degradation Fully marked up XHTML Client software interprets as much as it can understand, structuring it for the user to see. Anything the client doesn t understand is just XHTML-rendered. 55

56 <div xmlns:rss=... xmlns:cal=... xmlns:cc=... > <h2 property="rss:title">calendr Events</h2> <a rel="rss:link" href="/">calendar</a>. <p property="rss:description">calendr Events.</p> <link rel="rss:items" href="#items" /> <ul id="#items"> <li href="#item_56">lessig - Free Culture</li> <li href="#item_57">zittrain - E2E is Dead</li> </ul> </div> <div id="item_56" about="#item_56" role= cal:vevent > <h3 property="rss:title">lessig - Free Culture</h3> <p property="rss:description"> Larry will be giving his talk on Free Culture at <a rel= cal:location href=... >CSAIL</a> on <span property= cal:dtstart > :00-05</span> for about <span property= cal:duration >1</span> hour </p> </div> 56

57 <div xmlns:rss=... xmlns:cal=... xmlns:cc=... > <h2 property="rss:title">calendr Events</h2> <a rel="rss:link" href="/">calendar</a>. <p property="rss:description">calendr Events.</p> <link rel="rss:items" href="#items" /> <ul id="#items"> <li href="#item_56">lessig - Free Culture</li> <li href="#item_57">zittrain - E2E is Dead</li> </ul> available under a <a rel= cc:license href= cc.org/licenses/by/2.5/ >CC license</a>. </div> <div id="item_56" about="#item_56" role= cal:vevent > <h3 property="rss:title">lessig - Free Culture</h3> <p property="rss:description"> Larry will be giving his talk on Free Culture at <a rel= cal:location href=... >CSAIL</a> on <span property= cal:dtstart > :00-05</span> for about <span property= cal:duration >1</span> hour </p> </div> 57

58 Real-World Examples 58

59 Creative Commons Including CC in a data model. Sometimes, users control only a small part of the HTML of their page. That HTML should be entirely self-describing! Other times, publishers want to publish XML with CC data. How can a generic CC client detect that? RDF/A for CC HTML; GRDDL for CC XML. 59

60 Libraries / MIT DSpace OAI effort to standardize archive formats. the XML schema has been forked 150 times among 800 institutions. Would RDF/A prevent forking? No, of course not, but what is compatible would remain compatible. GRDDL 60

61 Publisher Independence Data Reuse Self-Containment Schema Modularity Schema Evolvability 61

62 So... Existing Datasets: GRDDL New HTML applications: RDF/A Questions? 62

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

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 Use Cases and Case Studies

> Semantic Web Use Cases and Case Studies > Semantic Web Use Cases and Case Studies Case Study: Improving Web Search using Metadata Peter Mika, Yahoo! Research, Spain November 2008 Presenting compelling search results depends critically on understanding

More information

Semantic Web Publishing. Dr Nicholas Gibbins 32/4037

Semantic Web Publishing. Dr Nicholas Gibbins 32/4037 Semantic Web Publishing Dr Nicholas Gibbins nmg@ecs.soton.ac.uk 32/4037 Linked Data Semantic Web is the Web for machines Take existing data and republish it to the Web Rely on hypertextual nature of the

More information

Making the Web searchable Towards Semantic Search

Making the Web searchable Towards Semantic Search Making the Web searchable Towards Semantic Search Peter Mika Researcher, Data Architect Yahoo! Research Previously in search Horizontal search Yahoo Keyword-based indexing Minimal natural language g processing

More information

Report from the W3C Semantic Web Best Practices Working Group

Report from the W3C Semantic Web Best Practices Working Group Report from the W3C Semantic Web Best Practices Working Group Semantic Web Best Practices and Deployment Thomas Baker, Göttingen State and University Library Cashmere-int Workshop Standardisation and Transmission

More information

Chapter 3 Other RDF-Related Technologies: Microformats, RDFa and GRDDL

Chapter 3 Other RDF-Related Technologies: Microformats, RDFa and GRDDL Chapter 3 Other RDF-Related Technologies: Microformats, RDFa and GRDDL 3.1 Introduction: Why Do We Need These? So far at this point, we have learned the concept of the Semantic Web, and we have learned

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

RDFa 1.1 Primer - Second Edition

RDFa 1.1 Primer - Second Edition RDFa 1.1 Primer - Second Edition Rich Structured Data Markup for Web Documents W3C Working Group Note 22 August 2013 This version: http://www.w3.org/tr/2013/note-rdfa-primer-20130822/ Latest published

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

Mapping between Digital Identity Ontologies through SISM

Mapping between Digital Identity Ontologies through SISM Mapping between Digital Identity Ontologies through SISM Matthew Rowe The OAK Group, Department of Computer Science, University of Sheffield, Regent Court, 211 Portobello Street, Sheffield S1 4DP, UK m.rowe@dcs.shef.ac.uk

More information

Data Integration and Structured Search

Data Integration and Structured Search Data Integration and Structured Search RDF a language for linking data URIs are the words of the language. URIs provide global identity independently of application context. Domain Name system provides

More information

Semantic Extensions to Defuddle: Inserting GRDDL into XML

Semantic Extensions to Defuddle: Inserting GRDDL into XML Semantic Extensions to Defuddle: Inserting GRDDL into XML Robert E. McGrath July 28, 2008 1. Introduction The overall goal is to enable automatic extraction of semantic metadata from arbitrary data. Our

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

RDFa versus Microformats: Exploring the Potential for Semantic Interoperability of Mash-up Personal Learning Environments

RDFa versus Microformats: Exploring the Potential for Semantic Interoperability of Mash-up Personal Learning Environments RDFa versus Microformats: Exploring the Potential for Semantic Interoperability of Mash-up Personal Learning Environments Vladimir Tomberg, Mart Laanpere Tallinn University, Narva mnt. 25, 10120 Tallinn,

More information

Web 2.0 Lecture 8: Resource Description Framework

Web 2.0 Lecture 8: Resource Description Framework Web 2.0 Lecture 8: Resource Description Framework doc. Ing. Tomáš Vitvar, Ph.D. tomas@vitvar.com @TomasVitvar http://www.vitvar.com Leopold-Franzens Universität Innsbruck and Czech Technical University

More information

Semantic Sensor Networks XG Semantic Markup Laurent Lefort, CSIRO ICT Centre

Semantic Sensor Networks XG Semantic Markup Laurent Lefort, CSIRO ICT Centre Semantic Sensor Networks XG Semantic Markup Laurent Lefort, CSIRO ICT Centre SSN XG Meeting 3 March 2010 Contents Review of semantic annotation techniques Types of annotations Compatibility of existing

More information

Artificial Intelligence Techniques. Internet Applications 2

Artificial Intelligence Techniques. Internet Applications 2 Artificial Intelligence Techniques Internet Applications 2 Aims of the session What are Microdata Are they useful? Introduce the concept of Semantic Web semantic web with small s Internal research. Microdata

More information

LINKING WEB DATA WEB:

LINKING WEB DATA   WEB: LINKING WEB DATA JELENA JOVANOVIC EMAIL: JELJOV@GMAIL.COM WEB: HTTP://JELENAJOVANOVIC.NET QUICK REMINDER: GIGANTIC GLOBAL GRAPH & WEB OF (LINKED) DATA GIGANTIC GLOBAL GRAPH International Information Infrastructure

More information

Current State of the Semantic Web

Current State of the Semantic Web Current State of the Semantic Web Kore Nordmann March 6, 2009 About me Kore Nordmann, kore@php.net Long time PHP developer Regular speaker, author, etc. Studies computer science in Dortmund Consultancy

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

RDFa: Embedding RDF Knowledge in HTML

RDFa: Embedding RDF Knowledge in HTML RDFa: Embedding RDF Knowledge in HTML Some content from a presentation by Ivan Herman of the W3c, Introduction to RDFa, given at the 2011 Semantic Technologies Conference. What is RDFa? l Simple idea:

More information

Building a federated science web one link at a time

Building a federated science web one link at a time Building a federated science web one link at a time Shirley Crompton, Brian Matthews : STFC e-science Centre Cameron Neylon : STFC ISIS Simon Coles, Mark Borkum: School of Chemistry, University of Southampton

More information

XML Motivations. Semi-structured data. Principles of Information and Database Management 198:336 Week 8 Mar 28 Matthew Stone.

XML Motivations. Semi-structured data. Principles of Information and Database Management 198:336 Week 8 Mar 28 Matthew Stone. XML Motivations Principles of Information and Database Management 198:336 Week 8 Mar 28 Matthew Stone Semi-structured data Relaxing traditional schema Storing more complex objects Standardized data Using

More information

Semantiska webben DFS/Gbg

Semantiska webben DFS/Gbg 1 Semantiska webben 2010 DFS/Gbg 100112 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) With thanks to Ivan for many slides 2 Trends and forces: Technology Internet

More information

Improved Methods for Tagging and Semantic-Annotation for the Semantic-based OpenAPI Retrieval System *

Improved Methods for Tagging and Semantic-Annotation for the Semantic-based OpenAPI Retrieval System * Improved Methods for Tagging and Semantic-Annotation for the Semantic-based OpenAPI Retrieval System * Seung-Jun Cha, Kyu-Chul Lee ** Dept. Of Computer Engineering, Chungnam National University 99 Daehak-ro,

More information

SA-REST: Using Semantics to Empower RESTful Services and Smashups with Better Interoperability and Mediation

SA-REST: Using Semantics to Empower RESTful Services and Smashups with Better Interoperability and Mediation Wright State University CORE Scholar Kno.e.sis Publications The Ohio Center of Excellence in Knowledge- Enabled Computing (Kno.e.sis) 5-22-2008 SA-REST: Using Semantics to Empower RESTful Services and

More information

The Semantic Web. Challenges with today s Web the Semantic Web Technology Example of use Status Semantic Web in e-learning

The Semantic Web. Challenges with today s Web the Semantic Web Technology Example of use Status Semantic Web in e-learning The Semantic Web Challenges with today s Web the Semantic Web Technology Example of use Status Semantic Web in e-learning 1 The Web - the worlds largest library? Not catalogued and categorized No professional

More information

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009

SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 SRI International, Artificial Intelligence Center Menlo Park, USA, 24 July 2009 The Emerging Web of Linked Data Chris Bizer, Freie Universität Berlin Outline 1. From a Web of Documents to a Web of Data

More information

Comp 336/436 - Markup Languages. Fall Semester Week 4. Dr Nick Hayward

Comp 336/436 - Markup Languages. Fall Semester Week 4. Dr Nick Hayward Comp 336/436 - Markup Languages Fall Semester 2018 - Week 4 Dr Nick Hayward XML - recap first version of XML became a W3C Recommendation in 1998 a useful format for data storage and exchange config files,

More information

Multi-agent Semantic Web Systems: Data & Metadata

Multi-agent Semantic Web Systems: Data & Metadata Multi-agent Semantic Web Systems: Data & Metadata Ewan Klein School of Informatics MASWS January 26, 2012 Ewan Klein (School of Informatics) Multi-agent Semantic Web Systems: Data & Metadata MASWS January

More information

Web 2.0 and the Semantic Web

Web 2.0 and the Semantic Web Department of Computer Science Web 2.0 and the Semantic Web Group Homework of Internet Services & Protocols 12.06.2006 Chao Xiaojuan Shen Li Wu Weiwei Wu Binbin History of Web:From Web1.0 to Web2.0 Web1.0

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

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

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data: Introduction to Semantic Web Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Course Outline Introduction to SW Give a structure to data (RDF Data Model)

More information

Linked Open Data: a short introduction

Linked Open Data: a short introduction International Workshop Linked Open Data & the Jewish Cultural Heritage Rome, 20 th January 2015 Linked Open Data: a short introduction Oreste Signore (W3C Italy) Slides at: http://www.w3c.it/talks/2015/lodjch/

More information

Semantic web. Tapas Kumar Mishra 11CS60R32

Semantic web. Tapas Kumar Mishra 11CS60R32 Semantic web Tapas Kumar Mishra 11CS60R32 1 Agenda Introduction What is semantic web Issues with traditional web search The Technology Stack Architecture of semantic web Meta Data Main Tasks Knowledge

More information

Syntax and processing rules for embedding RDF through attributes

Syntax and processing rules for embedding RDF through attributes RDFa Core 11 RDFa Core 11 W3C RDFa Core 11 Syntax and processing rules for embedding RDF through attributes W3C Recommendation 07 June 2012 This version: http://wwww3org/tr/2012/rec-rdfa-core-20120607/

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

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

References differences between SVG 1.1 Full and SVG 1.2 Tiny

References differences between SVG 1.1 Full and SVG 1.2 Tiny References differences between SVG 1.1 Full and SVG 1.2 Tiny Differences in XML related s XML 1.0 (Second Edition) XML 1.0 (Fourth Edition) XML 1.1 April 2004. XML-NS 1.0 (First Edition) Jan. 1999. XML

More information

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø Towards the Semantic Desktop Dr. Øyvind Hanssen University Library of Tromsø Agenda Background Enabling trends and technologies Desktop computing and The Semantic Web Online Social Networking and P2P Computing

More information

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites

Google indexed 3,3 billion of pages. Google s index contains 8,1 billion of websites Access IT Training 2003 Google indexed 3,3 billion of pages http://searchenginewatch.com/3071371 2005 Google s index contains 8,1 billion of websites http://blog.searchenginewatch.com/050517-075657 Estimated

More information

A Repository of Metadata Crosswalks. Jean Godby, Devon Smith, Eric Childress, Jeffrey A. Young OCLC Online Computer Library Center Office of Research

A Repository of Metadata Crosswalks. Jean Godby, Devon Smith, Eric Childress, Jeffrey A. Young OCLC Online Computer Library Center Office of Research A Repository of Metadata Crosswalks Jean Godby, Devon Smith, Eric Childress, Jeffrey A. Young OCLC Online Computer Library Center Office of Research DLF-2004 Spring Forum April 21, 2004 Outline of this

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

Metadata Sharing Policy

Metadata Sharing Policy University of California Libraries Metadata Sharing Policy Lisa Rowlison de Ortiz UC Berkeley, June 2015 Why is the Policy important? Establishes a major area for collaboration Who would make use of shared

More information

Reminder: RDF triples

Reminder: RDF triples Reminder: RDF triples The RDF data model is similar to classical conceptual modelling approaches such as entity relationship or class diagrams it is based on the idea of making statements about resources

More information

Semantic Web Update W3C RDF, OWL Standards, Development and Applications. Dave Beckett

Semantic Web Update W3C RDF, OWL Standards, Development and Applications. Dave Beckett Semantic Web Update W3C RDF, OWL Standards, Development and Applications Dave Beckett Introduction Semantic Web Activity RDF - RDF Core OWL - WebOnt Interest Group Query, Calendaring SWAD and Applications

More information

INFO/CS 4302 Web Informa6on Systems

INFO/CS 4302 Web Informa6on Systems INFO/CS 4302 Web Informa6on Systems FT 2012 Week 10 / Lecture 18: Publishing Structured Data on the Web - Bernhard Haslhofer - Plan for today... Recap Publishing Data The Linked Data Way Embedding Structured

More information

The Semantic Web DEFINITIONS & APPLICATIONS

The Semantic Web DEFINITIONS & APPLICATIONS The Semantic Web DEFINITIONS & APPLICATIONS Data on the Web There are more an more data on the Web Government data, health related data, general knowledge, company information, flight information, restaurants,

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Linked Data: What Now? Maine Library Association 2017

Linked Data: What Now? Maine Library Association 2017 Linked Data: What Now? Maine Library Association 2017 Linked Data What is Linked Data Linked Data refers to a set of best practices for publishing and connecting structured data on the Web. URIs - Uniform

More information

Towards the Semantic Web

Towards the Semantic Web Towards the Semantic Web Ora Lassila Research Fellow, Nokia Research Center (Boston) Chief Scientist, Nokia Venture Partners LLP Advisory Board Member, W3C XML Finland, October 2002 1 NOKIA 10/27/02 -

More information

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER Hypermedia API Tools for Sling (HApi) Andrei Dulvac, Adobe

APACHE SLING & FRIENDS TECH MEETUP BERLIN, SEPTEMBER Hypermedia API Tools for Sling (HApi) Andrei Dulvac, Adobe APACHE SLING & FRIENDS TECH MEETUP BERLIN, 28-30 SEPTEMBER 2015 Hypermedia API Tools for Sling (HApi) Andrei Dulvac, Adobe ToC HatEoAS, Hypermedia formats, and semantic data Hypermedia API tools (HApi)

More information

Modern Web Applications with Sightly

Modern Web Applications with Sightly APACHE SLING & FRIENDS TECH MEETUP BERLIN, 28-30 SEPTEMBER 2015 Modern Web Applications with Sightly @raducotescu Apache Sling committer Computer Scientist @ Adobe Systems radu@apache.org rev 2.20151005

More information

Some more XML applications and XML-related standards (XLink, XPointer, XForms)

Some more XML applications and XML-related standards (XLink, XPointer, XForms) Some more XML applications and XML-related standards (XLink, XPointer, XForms) Patryk Czarnik XML and Applications 2014/2015 Lecture 12 19.01.2015 Standards for inter-document relations XPointer addressing

More information

RDF and Digital Libraries

RDF and Digital Libraries RDF and Digital Libraries Conventions for Resource Description in the Internet Commons Stuart Weibel purl.org/net/weibel December 1998 Outline of Today s Talk Motivations for developing new conventions

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

Microdata and schema.org

Microdata and schema.org Basics Microdata and schema.org l Microdata is a simple semantic markup scheme that s an alternative to RDFa l Developed by WHATWG and supported by major search companies (Goog,e, MSFT, Yahoo) l Like RDFa,

More information

Content-sensitive User Interfaces for Annotated Web Pages

Content-sensitive User Interfaces for Annotated Web Pages Content-sensitive User Interfaces for Annotated Web Pages Florian Schmedding Department of Computer Science Albert-Ludwig-University Freiburg, Germany schmeddi@informatik.uni-freiburg.de Abstract: By means

More information

(1) I (2) S (3) P allow subscribers to connect to the (4) often provide basic services such as (5) (6)

(1) I (2) S (3) P allow subscribers to connect to the (4) often provide basic services such as (5) (6) Collection of (1) Meta-network That is, a (2) of (3) Uses a standard set of protocols Also uses standards d for structuring t the information transferred (1) I (2) S (3) P allow subscribers to connect

More information

Comp 336/436 - Markup Languages. Fall Semester Week 4. Dr Nick Hayward

Comp 336/436 - Markup Languages. Fall Semester Week 4. Dr Nick Hayward Comp 336/436 - Markup Languages Fall Semester 2017 - Week 4 Dr Nick Hayward XML - recap first version of XML became a W3C Recommendation in 1998 a useful format for data storage and exchange config files,

More information

HTML+ CSS PRINCIPLES. Getting started with web design the right way

HTML+ CSS PRINCIPLES. Getting started with web design the right way HTML+ CSS PRINCIPLES Getting started with web design the right way HTML : a brief history ❶ 1960s : ARPANET is developed... It is the first packet-switching network using TCP/IP protocol and is a precursor

More information

Provenance Situations: Use Cases for Provenance on Web Architecture

Provenance Situations: Use Cases for Provenance on Web Architecture Provenance Situations: Use Cases for Provenance on Web Architecture W3C Provenance XG http://www.w3.org/2005/incubator/prov/wiki October 28, 2010 1 Provenance and Web Architecture: Consider Five Diverse

More information

University of Bath. Publication date: Document Version Publisher's PDF, also known as Version of record. Link to publication

University of Bath. Publication date: Document Version Publisher's PDF, also known as Version of record. Link to publication Citation for published version: Patel, M & Duke, M 2004, 'Knowledge Discovery in an Agents Environment' Paper presented at European Semantic Web Symposium 2004, Heraklion, Crete, UK United Kingdom, 9/05/04-11/05/04,.

More information

- What we actually mean by documents (the FRBR hierarchy) - What are the components of documents

- What we actually mean by documents (the FRBR hierarchy) - What are the components of documents Purpose of these slides Introduction to XML for parliamentary documents (and all other kinds of documents, actually) Prof. Fabio Vitali University of Bologna Part 1 Introduce the principal aspects of electronic

More information

Semantic Adaptation Approach for Adaptive Web-Based Systems

Semantic Adaptation Approach for Adaptive Web-Based Systems Semantic Adaptation Approach for Adaptive Web-Based Systems Bujar Raufi, Artan Luma, Xhemal Zenuni, Florije Ismaili Faculty of Contemporary Sciences and Technologies, South East European University Ilindenska

More information

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

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

More information

Abstract: In this paper we propose research on how the

Abstract: In this paper we propose research on how the The Semantic Web Converting the Current Web Services Imran Alam Shoeb Ahad Siddiqui Nida Khan Deptt Of CS Deptt Of CSE Deptt Of CSE Jamia Hamdard, Delhi Integral University, Lucknow Integral University,

More information

Web of Hypertext (RDFa, Microformats) and Web of Data

Web of Hypertext (RDFa, Microformats) and Web of Data Semantic Web Web of Hypertext (RDFa, Microformats) and Web of Data Dieter Fensel and Tobias Bürger www.sti-innsbruck.at Copyright 2009 STI INNSBRUCK www.sti-innsbruck.at Where are we? # Title 1 Introduction

More information

Linked Open Europeana: Semantic Leveraging of European Cultural Heritage

Linked Open Europeana: Semantic Leveraging of European Cultural Heritage Linked Open Europeana: Semantic Leveraging of European Cultural Heritage http://www.slideshare.net/gradmans/ Prof. Dr. Stefan Gradmann Humboldt-Universität zu Berlin / School of Library and Information

More information

Linked Data Overview and Usage in Social Networks

Linked Data Overview and Usage in Social Networks Linked Data Overview and Usage in Social Networks Gustavo G. Valdez Technische Universitat Berlin Email: project 2012@ggvaldez.com Abstract This paper intends to introduce the principles of Linked Data,

More information

Metadata Workshop 3 March 2006 Part 1

Metadata Workshop 3 March 2006 Part 1 Metadata Workshop 3 March 2006 Part 1 Metadata overview and guidelines Amelia Breytenbach Ria Groenewald What metadata is Overview Types of metadata and their importance How metadata is stored, what metadata

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

SEPA SPARQL Event Processing Architecture

SEPA SPARQL Event Processing Architecture SEPA SPARQL Event Processing Architecture Enabling distributed, context aware and interoperable Dynamic Linked Data and Web of Things applications Luca Roffia (luca.roffia@unibo.it) Web of Things: members

More information

All About Open & Sharing

All About Open & Sharing All About Open & Sharing 차세대웹기술과컨버전스 Lecture 3 수업블로그 : http://itmedia.kaist.ac.kr 2008. 2. 28 한재선 (jshan0000@gmail.com) NexR 대표이사 KAIST 정보미디어경영대학원대우교수 http://www.web2hub.com Open & Sharing S2 OpenID Open

More information

Semantic Web Platform for Personal Information Management

Semantic Web Platform for Personal Information Management Semantic Web Platform for Personal Information Management Ora Lassila, Ph.D Research Fellow, Nokia Research Center Cambridge Visiting Scientist, MIT CSAIL Elected Member, W3C Advisory Board Semantic Days,

More information

What is the Semantic Web? 17 XBRL International Conference Eindhoven, the Netherlands 5st May, Ivan Herman, W3C

What is the Semantic Web? 17 XBRL International Conference Eindhoven, the Netherlands 5st May, Ivan Herman, W3C What is the Semantic Web? th 17 XBRL International Conference Eindhoven, the Netherlands 5st May, 2008 Ivan Herman, W3C (2) > Towards a Semantic Web The current Web represents information using natural

More information

Advanced Tagging and Semantic-Annotation Methods for the Semantic-based OpenAPI Retrieval System

Advanced Tagging and Semantic-Annotation Methods for the Semantic-based OpenAPI Retrieval System Advanced Tagging and Semantic-Annotation Methods for the Semantic-based OpenAPI Retrieval System Seung-Jun Cha and Kyu-Chul Lee 1 Chungnam National University {junii, kclee}@cnu.ac.kr Abstract The OpenAPI

More information

Ivan Herman. F2F Meeting of the W3C Business Group on Oil, Gas, and Chemicals Houston, February 13, 2012

Ivan Herman. F2F Meeting of the W3C Business Group on Oil, Gas, and Chemicals Houston, February 13, 2012 Ivan Herman F2F Meeting of the W3C Business Group on Oil, Gas, and Chemicals Houston, February 13, 2012 (2) (3) } An intelligent system manipulating and analyzing knowledge bases e.g., via big ontologies,

More information

XML. Jonathan Geisler. April 18, 2008

XML. Jonathan Geisler. April 18, 2008 April 18, 2008 What is? IS... What is? IS... Text (portable) What is? IS... Text (portable) Markup (human readable) What is? IS... Text (portable) Markup (human readable) Extensible (valuable for future)

More information

HTML HTML/XHTML HTML / XHTML HTML HTML: XHTML: (extensible HTML) Loose syntax Few syntactic rules: not enforced by HTML processors.

HTML HTML/XHTML HTML / XHTML HTML HTML: XHTML: (extensible HTML) Loose syntax Few syntactic rules: not enforced by HTML processors. HTML HTML/XHTML HyperText Mark-up Language Basic language for WWW documents Format a web page s look, position graphics and multimedia elements Describe document structure and formatting Platform independent:

More information

HTML. Based mostly on

HTML. Based mostly on HTML Based mostly on www.w3schools.com What is HTML? The standard markup language for creating Web pages HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup

More information

Obsoletes: 2070, 1980, 1942, 1867, 1866 Category: Informational June 2000

Obsoletes: 2070, 1980, 1942, 1867, 1866 Category: Informational June 2000 Network Working Group Request for Comments: 2854 Obsoletes: 2070, 1980, 1942, 1867, 1866 Category: Informational D. Connolly World Wide Web Consortium (W3C) L. Masinter AT&T June 2000 The text/html Media

More information

WSDL versioning. Facts Basic scenario. WSDL -Web Services Description Language SAWSDL -Semantic Annotations for WSDL and XML Schema

WSDL versioning. Facts Basic scenario. WSDL -Web Services Description Language SAWSDL -Semantic Annotations for WSDL and XML Schema Internet Engineering Tomasz Babaczyński ski, Zofia Kruczkiewicz Tomasz Kubik Information systems modelling UML and description languages WSDL -Web Services Description Language SAWSDL -Semantic Annotations

More information

Microformat Sh Schema.org

Microformat Sh Schema.org RDF Beyond Outline RDFa Microformat Sh Schema.org RDFa RDFa RDFa: A collection of attributes and processing rules for extending XHTML to support RDF. HTML contains structured data, but not accessible to

More information

Introduction to AtomPub Web Services Ben Ramsey International PHP Conference 11 Oct 2010

Introduction to AtomPub Web Services Ben Ramsey International PHP Conference 11 Oct 2010 Introduction to AtomPub Web Services Ben Ramsey International PHP Conference 11 Oct 2010 Hi, I m Ben. VP of Engineering at Moontoast Co-founder and organizer emeritus of the Atlanta PHP user group Current

More information

Jumpstarting the Semantic Web

Jumpstarting the Semantic Web Jumpstarting the Semantic Web Mark Watson. Copyright 2003, 2004 Version 0.3 January 14, 2005 This work is licensed under the Creative Commons Attribution-NoDerivs-NonCommercial License. To view a copy

More information

Service Integration - A Web of Things Perspective W3C Workshop on Data and Services Integration

Service Integration - A Web of Things Perspective W3C Workshop on Data and Services Integration Service Integration - A Web of Things Perspective W3C Workshop on Data and Services Integration Simon Mayer Institute for Pervasive Computing ETH Zurich, Switzerland simon.mayer@inf.ethz.ch The augmentation

More information

Institutional Repository using DSpace. Yatrik Patel Scientist D (CS)

Institutional Repository using DSpace. Yatrik Patel Scientist D (CS) Institutional Repository using DSpace Yatrik Patel Scientist D (CS) yatrik@inflibnet.ac.in What is Institutional Repository? Institutional repositories [are]... digital collections capturing and preserving

More information

HTML Overview. With an emphasis on XHTML

HTML Overview. With an emphasis on XHTML HTML Overview With an emphasis on XHTML What is HTML? Stands for HyperText Markup Language A client-side technology (i.e. runs on a user s computer) HTML has a specific set of tags that allow: the structure

More information

Introduction. October 5, Petr Křemen Introduction October 5, / 31

Introduction. October 5, Petr Křemen Introduction October 5, / 31 Introduction Petr Křemen petr.kremen@fel.cvut.cz October 5, 2017 Petr Křemen (petr.kremen@fel.cvut.cz) Introduction October 5, 2017 1 / 31 Outline 1 About Knowledge Management 2 Overview of Ontologies

More information

User Interaction: XML and JSON

User Interaction: XML and JSON User Interaction: XML and JSON Assoc. Professor Donald J. Patterson INF 133 Fall 2012 1 HTML and XML 1989: Tim Berners-Lee invents the Web with HTML as its publishing language Based on SGML Separates data

More information

Open Archives Initiative Object Reuse & Exchange. Resource Map Discovery

Open Archives Initiative Object Reuse & Exchange. Resource Map Discovery Open Archives Initiative Object Reuse & Exchange Resource Map Discovery Michael L. Nelson * Carl Lagoze, Herbert Van de Sompel, Pete Johnston, Robert Sanderson, Simeon Warner OAI-ORE Specification Roll-Out

More information

Making Information Findable

Making Information Findable Making Information Findable CS 510 Spring 2010 1 To Discuss Suppose you create something and wanted to make sure people find in on the Internet. Examples book review house listing scientific data set CS

More information

Interactive XML Visualization - using XSLT 2.0 on the Browser. Phil Fearon - Saxonica

Interactive XML Visualization - using XSLT 2.0 on the Browser. Phil Fearon - Saxonica Interactive XML Visualization - using XSLT 2.0 on the Browser Phil Fearon - Saxonica Big XML Theme Big data Large scale searching Processing large volumes at high speed Crunching big XML files Open Linked

More information

Why HTML5? Why not XHTML2? Learning from history how to drive the future of the Web

Why HTML5? Why not XHTML2? Learning from history how to drive the future of the Web Why HTML5? Why not XHTML2? Learning from history how to drive the future of the Web Michael(tm) Smith mike@w3.org http://people.w3.org/mike sideshowbarker on Twitter, GitHub, &c W3C Interaction domain

More information

Semantic Web Programming

Semantic Web Programming *) Semantic Web Programming John Hebeler Matthew Fisher Ryan Blace Andrew Perez-Lopez WILEY Wiley Publishing, Inc. Contents Foreword Introduction xxiii xxv Part One Introducing Semantic Web Programming

More information

Introduction to RDF & SPARQL

Introduction to RDF & SPARQL Training Module 1.3 OPEN DATA SUPPORT Introduction to RDF & SPARQL PwC firms help organisations and individuals create the value they re looking for. We re a network of firms in 158 countries with close

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

An Argument For Semantics

An Argument For Semantics An Argument For Semantics Why developers should give a hoot about OWL Brian Panulla http://www.flickr.com/photos/vc_vigilant/2794272997/ The quest for a smarter Web What is a Semantic Web, and why would

More information