SlideShare una empresa de Scribd logo
1 de 44
Armin Haller & Florian Rosenberg
A Semantic Data Model for Web
Applications
CSIRO ICT Centre Conference
Semantic Web
Adds machine readable data to Web
resources
Semantic Web
“First step is putting data on the Web
in a form that machines can naturally
understand, or converting it to that
form. This creates what I call a
Semantic Web - a web of data that
can be processed directly or indirectly
by machines.” – Tim Berners-Lee
Web Resource
A page about a book
<html>
<head>
<title>Tractatus Logico-Philosophicus</title>
</head>
<body>
<p>
<img src="tractatus.png" /><br/>
Written by: Ludwig Wittgenstein <br />
With an Introduction by: Bertrand Russell
</p>
<p>
New York <br />
Harcourt, Brace & Company, Inc. <br />
London: Kegan Paul, Trench, Trubner & Co.,
Ltd. <br />
<p>1922</p>
</body>
</html>
Web Resource
A Book – Metadata elements
Title
Author
Publisher
Date
Contributor
Four principles to add machine readable data
1. Identify resources
2. Reuse ontologies
3. Express meaning
4. Link to other Web resources
Semantic Web
1. Identify resources
– Uniquely assign a Uniform Resource
Identifier (URI) to every Web resource
Title
Author
Publisher
Date
Contributor
Web Resource
1. Identify resources
http://example.org/book/Tractatus_Logico-Philosophicus
Semantic Web
2. Reuse Ontologies
– Specification of a conceptualization,
ie. a description of the concepts and
relationships in a domain
– Link to information in ontologies by
their URI to reuse the same
definition of common concepts, such
as the "book" or the "title“
Title
Author
Publisher
Date
Contributor
Web Resource
2. Reuse ontologies – e.g. Dublin Core
http://purl.org/dc/elements/1.1/creator
http://purl.org/dc/elements/1.1/date
http://purl.org/dc/elements/1.1/publisher
http://purl.org/dc/elements/1.1/contributor
http://purl.org/dc/elements/1.1/title
Semantic Web
3. Express meaning
– Add structured information and set
of rules to Web resources
– Use knowledge representation
language – typically RDF
• statements about Web resources in the
form of Subject-Predicate-Object
(S P O) triples
Web Resource
3. Express meaning
http://example.org/book/Tractatus_Logico-Philosophicus
dc:title
has a
which is
Web Resource
3. Express meaning
http://example.org/book/Tractatus_Logico-Philosophicus
dc:creator
has a
whose name is
Web Resource
3. Express meaning
http://example.org/book/Tractatus_Logico-Philosophicus
dc:contributor
has
a
whose name is
Web Resource
3. Express meaning
http://example.org/book/Tractatus_Logico-Philosophicus
dc:publisher
which is
has a
Web Resource
3. Express meaning
http://example.org/book/Tractatus_Logico-Philosophicus
dc:date
has a
which is
@prefix dc: <http://purl.org/dc/terms/> .
@prefix : <http://example.org/book#> .
:Tractatus_Logico-Philosophicus dc:title "Tractatus Logico-Philospohicus" .
:Tractatus_Logico-Philosophicus dc:creator "Ludwig Wittgenstein" .
:Tractatus_Logico-Philosophicus dc:contributor "Bertrand Russell" .
:Tractatus_Logico-Philosophicus dc:publisher "Harcourt, Brace & Company, Inc." .
:Tractatus_Logico-Philosophicus dc:date "1922" .
Resulting triples
3. Express meaning
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:dc="http://purl.org/dc/terms/"
xmlns="http://example.org/book#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="http://example.org/book#Tractatus_Logico
Philosophicus">
<dc:title>Tractatus Logicao-Philospohicus</dc:title>
<dc:creator>Ludwig Wittgenstein</dc:creator>
<dc:contributor>Bertrand Russell</dc:contributor>
<dc:publisher>Harcourt, Brace &amp; Company, Inc.</dc:publisher>
<dc:date>1922</dc:date>
</rdf:Description>
</rdf:RDF>
Resulting triples in RDF/XML
3. Express meaning
Semantic Web
4. Link to other Web resources
– Progressively link to existing Web
resources that someone else has
defined already
Web Resource
4. Link to other Web resources
http://example.org/book/Tractatus_Logico-Philosophicus
dc:creator
has a
whose name is
Web Resource
4. Link to other Web resources
http://example.org/book/Tractatus_Logico-Philosophicus
dc:creator
has a
http://dbpedia.org/page/Ludwig_Wittgenstein
whose
name
is
Where is the semantic Web?
RDF → for agents
RDF annotations often express
metadata (as in our book example)
– usually stored in a separate .rdf file
– useful for agents, limited use for humans
RDFa → for agents and humans
RDFa = RDF in attributes
– a way to mark up data in a web page
– RDFa encodes RDF triples in HTML
– useful for agents and (relatively) easy
to use for humans
HTML
<html>
<head>
<title>Tractatus Logico-Philosophicus</title>
</head>
<body>
<p>
<img src="tractatus.png" /><br />
Written by: Ludwig Wittgenstein <br />
With an Introduction by: Bertrand Russell <br /><br />
New York <br />
Harcourt, Brace & Company, Inc. <br />
London: Kegan Paul, Trench, Trubner & Co., Ltd. <br />
<p>1922</p>
</body>
</html>
RDFa example
<html prefix="dc: http://purl.org/dc/terms/“
base="http://example.org/book/Tractatus_Logico-Philosophicus">
<head>
<title about="" property="dc:title">Tractatus Logico
Philosophicus</title>
</head>
<body>
<p about="">
<img src="tractatus.png" /><br />
Written by: <span property="dc:creator">Ludwig
Wittgenstein</span>
<br />
With an Introduction by: <span property="dc:contributor">
Bertrand Russell</span><br /><br />
New York <br />
<span property="dc:publisher">Harcourt, Brace & Company, Inc.
</span><br />
London: Kegan Paul, Trench, Trubner & Co., Ltd. <br />
<p about=""><span property="dc:date">1922</span></p>
</body>
</html>
RDFa – metadata vs. data
RDFa mostly used for metadata, e.g.
the book metadata as before
But: the principle of the Semantic
Web and Linked Data is to add
meaning to metadata and data
– Data could be metadata,
– but it could be data, e.g. a book
purchase at Amazon
Forms, metadata vs. data
e.g. Book purchase on Amazon
First Name:
Last Name:
Jane
Doe
Email: jane.doe@example.com
Password: ********
Gender:
Birthday: 03 04 1976
Male Female
1976
Forms, metadata vs. data
e.g. Book purchase on Amazon
First Name:
Last Name:
Jane
Doe
Email: jane.doe@example.com
Password: ********
Gender:
Birthday: 03 04
Male FemaleTitle:
Author:
Tractatus Logico Phi
Ludwig Wittgenstein
Price: 25 GBP
Amount: 1
Delivery
Address:
10 Downing Street
London
SW1A 2AA
United Kingdom
1976
Forms, metadata vs. data
e.g. Book purchase on Amazon
First Name: Jane
Doe
Email: jane.doe@example.com
Password: ********
Gender:
Birthday: 03 04
Male FemaleTitle:
Author:
Tractatus Logico Phi
Ludwig Wittgenstein
Price: 25 GBP
Amount:
1
Delivery
Address:
10 Downing Street
London
SW1A 2AA
United Kingdom
197604
1
Cardholder:
CC Number:
Expiry Date:
CVV: 999
Price:
Type: Mastercard
Jane Doe
5999 9999 9999 9999
04 13
25 GBP
Last Name:
Forms, metadata vs. data
e.g. Book purchase on Amazon
197604
FemaleTitle:
Author:
Tractatus Logico Phi
Ludwig Wittgenstein
Price: 25 GBP
Amount: 1
Delivery
Address:
10 Downing Street
London
SW1A 2AA
United Kingdom
→ metadata
→ metadata
→ metadata / data
→ data
→ data
→ data
→ data
→ data
Issue – Adding RDFa for data to forms
Form input elements can be
annotated with RDFa
But: RDFa annotations for input data
is not possible → no binding
Issue – Adding RDFa for data to forms
e.g. “Jane” can not be defined as
foaf:firstName
First Name:
Last Name:
Jane
Doe
Email: jane.doe@example.com
Password: ********
Gender:
Birthday: 03 04 1976
Male Female
<span about="" property="foaf:firstName" content="">
<input type="text" name=“First Name" value="" />
</span>span>
No binding!
Making input data available on
the Semantic Web!
Model and System for semantic Web applications
– RDF-based model for forms (RaUL)
http://purl.org/NET/raul#
– RESTful Web service (ActiveRaUL)
http://raul.deri.ie/raul
– JavaScript RDFa API
RaUL form model
Defines meta model for form elements
RaUL form model
– Triples defining the structure of a form
– Triples defining the data
First Name:
Last Name:
Jane
Doe
Email: jane.doe@example.com
Password: ********
Gender:
Birthday: 03 04 1976
Male Female
→ foaf:firstName
→ foaf:surname
→ foaf:mbox
→ foaf:sha1
→ foaf:gender
→ time:day, time:month, time:year
ActiveRaUL Web service
Model-View-Controller
– Model: RaUL
– View: Rendering service
to generate RaUL-based
Web forms in
XHTML+RDFa
– Controller: Web service
that maps HTTP terms to
CRUD operations on RaUL
Web forms
JavaScript RDFa API
– Parses RDFa
– Manages data binding of form input
to data model
Lifecycle
1. Form Modeling:
form model in RDF
based on the RaUL
ontology
– Actor: ontology engineer
Lifecycle
2. Form Deployment:
form submitted by
calling ActiveRaUL
– Generic form models in a
public namespace →
standard form models
– Actor: ontology engineer
Lifecycle
3. Form Usage: access
and manipulate a form
model by calling
ActiveRaUL
– submit instance data for a
form → bound to a data
model
– Actor: Web user or agent
Lifecycle
4. Data Reuse: Add link
to existing, local data or
data in the Linked data
cloud
– RDFa API retrieves data
from that URI and prefills
form controls
– Actor: Form Provider
Conclusion
RDFa annotated Web forms which follow the
principles of Linked Open Data.
Advantages:
1. Non-ambiguous model: typed through an ontological
model.
2. RDF data submission: submitted data encoded in RDF.
3. Explicit form structure: form elements are explicitly
modelled as RDF statements.
4. External schema augmentation: reuse existing
schemas for form data
5. Reuse of Linked Open Data: retrieve data from the
Linked Open Data cloud

Más contenido relacionado

La actualidad más candente

Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!Armin Haller
 
Efficient Practices for Large Scale Text Mining Process
Efficient Practices for Large Scale Text Mining ProcessEfficient Practices for Large Scale Text Mining Process
Efficient Practices for Large Scale Text Mining ProcessOntotext
 
Making the Web searchable
Making the Web searchableMaking the Web searchable
Making the Web searchablePeter Mika
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Websamar_slideshare
 
The Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open DataThe Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open DataOntotext
 
Linked Data Usecases
Linked Data UsecasesLinked Data Usecases
Linked Data UsecasesMyungjin Lee
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011Peter Mika
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQLOpen Data Support
 
Building a semantic website
Building a semantic websiteBuilding a semantic website
Building a semantic websiteCJ Jenkins
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioOpen Knowledge Belgium
 
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information Retrieval
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information RetrievalKeystone Summer School 2015: Mauro Dragoni, Ontologies For Information Retrieval
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information RetrievalMauro Dragoni
 
The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise Ontotext
 
Linked data as a library data platform
Linked data as a library data platformLinked data as a library data platform
Linked data as a library data platformJindřich Mynarz
 
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...Michele Pasin
 
2011 05-01 linked data
2011 05-01 linked data2011 05-01 linked data
2011 05-01 linked datavafopoulos
 
2011 05-02 linked data intro
2011 05-02 linked data intro2011 05-02 linked data intro
2011 05-02 linked data introvafopoulos
 

La actualidad más candente (20)

Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Efficient Practices for Large Scale Text Mining Process
Efficient Practices for Large Scale Text Mining ProcessEfficient Practices for Large Scale Text Mining Process
Efficient Practices for Large Scale Text Mining Process
 
Making the Web searchable
Making the Web searchableMaking the Web searchable
Making the Web searchable
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Search Engines After The Semanatic Web
Search Engines After The Semanatic WebSearch Engines After The Semanatic Web
Search Engines After The Semanatic Web
 
The Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open DataThe Power of Semantic Technologies to Explore Linked Open Data
The Power of Semantic Technologies to Explore Linked Open Data
 
Linked Data Usecases
Linked Data UsecasesLinked Data Usecases
Linked Data Usecases
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011
 
Danbri Drupalcon Export
Danbri Drupalcon ExportDanbri Drupalcon Export
Danbri Drupalcon Export
 
Linked Data
Linked DataLinked Data
Linked Data
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQL
 
Building a semantic website
Building a semantic websiteBuilding a semantic website
Building a semantic website
 
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLioDo it on your own - From 3 to 5 Star Linked Open Data with RMLio
Do it on your own - From 3 to 5 Star Linked Open Data with RMLio
 
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information Retrieval
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information RetrievalKeystone Summer School 2015: Mauro Dragoni, Ontologies For Information Retrieval
Keystone Summer School 2015: Mauro Dragoni, Ontologies For Information Retrieval
 
The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise The Bounties of Semantic Data Integration for the Enterprise
The Bounties of Semantic Data Integration for the Enterprise
 
Linked data as a library data platform
Linked data as a library data platformLinked data as a library data platform
Linked data as a library data platform
 
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...
DH11: Browsing Highly Interconnected Humanities Databases Through Multi-Resul...
 
2011 05-01 linked data
2011 05-01 linked data2011 05-01 linked data
2011 05-01 linked data
 
2011 05-02 linked data intro
2011 05-02 linked data intro2011 05-02 linked data intro
2011 05-02 linked data intro
 

Destacado

Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebMustafa Jarrar
 
A Semantic Multimedia Web (Part 3)
A Semantic Multimedia Web (Part 3)A Semantic Multimedia Web (Part 3)
A Semantic Multimedia Web (Part 3)Raphael Troncy
 
A Semantic Multimedia Web (Part 2)
A Semantic Multimedia Web (Part 2)A Semantic Multimedia Web (Part 2)
A Semantic Multimedia Web (Part 2)Raphael Troncy
 
Towards Linked Ontologies and Data on the Semantic Web
Towards Linked Ontologies and Data on the Semantic WebTowards Linked Ontologies and Data on the Semantic Web
Towards Linked Ontologies and Data on the Semantic WebJie Bao
 
Building Semantic Web Portals with WebML
Building Semantic Web Portals with WebMLBuilding Semantic Web Portals with WebML
Building Semantic Web Portals with WebMLMarco Brambilla
 
A Semantic Multimedia Web (Part 1)
A Semantic Multimedia Web (Part 1)A Semantic Multimedia Web (Part 1)
A Semantic Multimedia Web (Part 1)Raphael Troncy
 
Concept Modeling on Semantic Wiki
Concept Modeling on Semantic WikiConcept Modeling on Semantic Wiki
Concept Modeling on Semantic WikiJie Bao
 
Semantic Data Normalization For Efficient Clinical Trial Research
Semantic Data Normalization For Efficient Clinical Trial ResearchSemantic Data Normalization For Efficient Clinical Trial Research
Semantic Data Normalization For Efficient Clinical Trial ResearchOntotext
 
The Object Oriented Database System Manifesto
The Object Oriented Database System ManifestoThe Object Oriented Database System Manifesto
The Object Oriented Database System ManifestoBeat Signer
 
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...Technische Universität München
 
Freebase, RDF and the Semantic Web
Freebase, RDF and the Semantic WebFreebase, RDF and the Semantic Web
Freebase, RDF and the Semantic WebJamie Taylor
 
Semantic Modeling - A Query Language for the 21st century
Semantic Modeling - A Query Language for the 21st centurySemantic Modeling - A Query Language for the 21st century
Semantic Modeling - A Query Language for the 21st centuryClifford Heath
 
Introduction to Ontology Concepts and Terminology
Introduction to Ontology Concepts and TerminologyIntroduction to Ontology Concepts and Terminology
Introduction to Ontology Concepts and TerminologySteven Miller
 
Semantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: IntroductionSemantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: IntroductionKent State University
 
Data Modeling Presentations I
Data Modeling Presentations IData Modeling Presentations I
Data Modeling Presentations Icd_crisci
 
Modeling and Representing Trust Relations in Semantic Web-Driven Social Networks
Modeling and Representing Trust Relations in Semantic Web-Driven Social NetworksModeling and Representing Trust Relations in Semantic Web-Driven Social Networks
Modeling and Representing Trust Relations in Semantic Web-Driven Social NetworksNima Dokoohaki
 
Object oriented database model
Object oriented database modelObject oriented database model
Object oriented database modelPAQUIAAIZEL
 
Object Oriented Dbms
Object Oriented DbmsObject Oriented Dbms
Object Oriented Dbmsmaryeem
 

Destacado (20)

Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
 
A Semantic Multimedia Web (Part 3)
A Semantic Multimedia Web (Part 3)A Semantic Multimedia Web (Part 3)
A Semantic Multimedia Web (Part 3)
 
A Semantic Multimedia Web (Part 2)
A Semantic Multimedia Web (Part 2)A Semantic Multimedia Web (Part 2)
A Semantic Multimedia Web (Part 2)
 
Towards Linked Ontologies and Data on the Semantic Web
Towards Linked Ontologies and Data on the Semantic WebTowards Linked Ontologies and Data on the Semantic Web
Towards Linked Ontologies and Data on the Semantic Web
 
Building Semantic Web Portals with WebML
Building Semantic Web Portals with WebMLBuilding Semantic Web Portals with WebML
Building Semantic Web Portals with WebML
 
A Semantic Multimedia Web (Part 1)
A Semantic Multimedia Web (Part 1)A Semantic Multimedia Web (Part 1)
A Semantic Multimedia Web (Part 1)
 
Concept Modeling on Semantic Wiki
Concept Modeling on Semantic WikiConcept Modeling on Semantic Wiki
Concept Modeling on Semantic Wiki
 
Semantic Data Normalization For Efficient Clinical Trial Research
Semantic Data Normalization For Efficient Clinical Trial ResearchSemantic Data Normalization For Efficient Clinical Trial Research
Semantic Data Normalization For Efficient Clinical Trial Research
 
The Object Oriented Database System Manifesto
The Object Oriented Database System ManifestoThe Object Oriented Database System Manifesto
The Object Oriented Database System Manifesto
 
Freebase Schema
Freebase SchemaFreebase Schema
Freebase Schema
 
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...
Smart Models for Smart Cities - Modeling of Dynamics, Sensors, Urban Indicato...
 
Freebase, RDF and the Semantic Web
Freebase, RDF and the Semantic WebFreebase, RDF and the Semantic Web
Freebase, RDF and the Semantic Web
 
Semantic Modeling - A Query Language for the 21st century
Semantic Modeling - A Query Language for the 21st centurySemantic Modeling - A Query Language for the 21st century
Semantic Modeling - A Query Language for the 21st century
 
Introduction to Ontology Concepts and Terminology
Introduction to Ontology Concepts and TerminologyIntroduction to Ontology Concepts and Terminology
Introduction to Ontology Concepts and Terminology
 
Semantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: IntroductionSemantic Web, Ontology, and Ontology Learning: Introduction
Semantic Web, Ontology, and Ontology Learning: Introduction
 
Data Modeling Presentations I
Data Modeling Presentations IData Modeling Presentations I
Data Modeling Presentations I
 
Modeling and Representing Trust Relations in Semantic Web-Driven Social Networks
Modeling and Representing Trust Relations in Semantic Web-Driven Social NetworksModeling and Representing Trust Relations in Semantic Web-Driven Social Networks
Modeling and Representing Trust Relations in Semantic Web-Driven Social Networks
 
Object oriented dbms
Object oriented dbmsObject oriented dbms
Object oriented dbms
 
Object oriented database model
Object oriented database modelObject oriented database model
Object oriented database model
 
Object Oriented Dbms
Object Oriented DbmsObject Oriented Dbms
Object Oriented Dbms
 

Similar a Semantic Web Forms for Data and Metadata

Lifting the Lid on Linked Data
Lifting the Lid on Linked DataLifting the Lid on Linked Data
Lifting the Lid on Linked DataJane Stevenson
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Jane Stevenson
 
Introduction to Semantic Web Technologies
Introduction to Semantic Web TechnologiesIntroduction to Semantic Web Technologies
Introduction to Semantic Web TechnologiesIvan Herman
 
Culture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data LandCulture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data Landval.cartei
 
RDFa From Theory to Practice
RDFa From Theory to PracticeRDFa From Theory to Practice
RDFa From Theory to PracticeAdrian Stevenson
 
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...Benjamin Adrian
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeDan Brickley
 
DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0John Breslin
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museumstrevorthornton
 
Publishing and Using Linked Data
Publishing and Using Linked DataPublishing and Using Linked Data
Publishing and Using Linked Dataostephens
 
The Semantic Web
The Semantic WebThe Semantic Web
The Semantic Webostephens
 
Semantic Web
Semantic WebSemantic Web
Semantic Webhardchiu
 
What is the Semantic Web
What is the Semantic WebWhat is the Semantic Web
What is the Semantic WebJuan Sequeda
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Cory Lampert
 

Similar a Semantic Web Forms for Data and Metadata (20)

Webofdata
WebofdataWebofdata
Webofdata
 
Quick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & MicroformatsQuick Introduction to the Semantic Web, RDFa & Microformats
Quick Introduction to the Semantic Web, RDFa & Microformats
 
Lifting the Lid on Linked Data
Lifting the Lid on Linked DataLifting the Lid on Linked Data
Lifting the Lid on Linked Data
 
Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011 Linked Data and Locah, UKSG2011
Linked Data and Locah, UKSG2011
 
Introduction to Semantic Web Technologies
Introduction to Semantic Web TechnologiesIntroduction to Semantic Web Technologies
Introduction to Semantic Web Technologies
 
Hacia la Internet del Futuro: Web Semántica y Open Linked Data, Parte 2
Hacia la Internet del Futuro: Web Semántica y Open Linked Data, Parte 2Hacia la Internet del Futuro: Web Semántica y Open Linked Data, Parte 2
Hacia la Internet del Futuro: Web Semántica y Open Linked Data, Parte 2
 
Culture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data LandCulture Geeks Feb talk: Adventures in Linked Data Land
Culture Geeks Feb talk: Adventures in Linked Data Land
 
RDFa From Theory to Practice
RDFa From Theory to PracticeRDFa From Theory to Practice
RDFa From Theory to Practice
 
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...
Epiphany: Adaptable RDFa Generation Linking the Web of Documents to the Web o...
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 
DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0
 
Linked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and MuseumsLinked Open Data Fundamentals for Libraries, Archives and Museums
Linked Open Data Fundamentals for Libraries, Archives and Museums
 
Web 3.0
Web 3.0 Web 3.0
Web 3.0
 
Slides
SlidesSlides
Slides
 
Publishing and Using Linked Data
Publishing and Using Linked DataPublishing and Using Linked Data
Publishing and Using Linked Data
 
Sem webmaubeuge
Sem webmaubeugeSem webmaubeuge
Sem webmaubeuge
 
The Semantic Web
The Semantic WebThe Semantic Web
The Semantic Web
 
Semantic Web
Semantic WebSemantic Web
Semantic Web
 
What is the Semantic Web
What is the Semantic WebWhat is the Semantic Web
What is the Semantic Web
 
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
Linked data demystified:Practical efforts to transform CONTENTDM metadata int...
 

Último

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 

Semantic Web Forms for Data and Metadata

  • 1. Armin Haller & Florian Rosenberg A Semantic Data Model for Web Applications CSIRO ICT Centre Conference
  • 2. Semantic Web Adds machine readable data to Web resources
  • 3. Semantic Web “First step is putting data on the Web in a form that machines can naturally understand, or converting it to that form. This creates what I call a Semantic Web - a web of data that can be processed directly or indirectly by machines.” – Tim Berners-Lee
  • 4. Web Resource A page about a book <html> <head> <title>Tractatus Logico-Philosophicus</title> </head> <body> <p> <img src="tractatus.png" /><br/> Written by: Ludwig Wittgenstein <br /> With an Introduction by: Bertrand Russell </p> <p> New York <br /> Harcourt, Brace & Company, Inc. <br /> London: Kegan Paul, Trench, Trubner & Co., Ltd. <br /> <p>1922</p> </body> </html>
  • 5. Web Resource A Book – Metadata elements Title Author Publisher Date Contributor
  • 6. Four principles to add machine readable data 1. Identify resources 2. Reuse ontologies 3. Express meaning 4. Link to other Web resources
  • 7. Semantic Web 1. Identify resources – Uniquely assign a Uniform Resource Identifier (URI) to every Web resource
  • 8. Title Author Publisher Date Contributor Web Resource 1. Identify resources http://example.org/book/Tractatus_Logico-Philosophicus
  • 9. Semantic Web 2. Reuse Ontologies – Specification of a conceptualization, ie. a description of the concepts and relationships in a domain – Link to information in ontologies by their URI to reuse the same definition of common concepts, such as the "book" or the "title“
  • 10. Title Author Publisher Date Contributor Web Resource 2. Reuse ontologies – e.g. Dublin Core http://purl.org/dc/elements/1.1/creator http://purl.org/dc/elements/1.1/date http://purl.org/dc/elements/1.1/publisher http://purl.org/dc/elements/1.1/contributor http://purl.org/dc/elements/1.1/title
  • 11. Semantic Web 3. Express meaning – Add structured information and set of rules to Web resources – Use knowledge representation language – typically RDF • statements about Web resources in the form of Subject-Predicate-Object (S P O) triples
  • 12. Web Resource 3. Express meaning http://example.org/book/Tractatus_Logico-Philosophicus dc:title has a which is
  • 13. Web Resource 3. Express meaning http://example.org/book/Tractatus_Logico-Philosophicus dc:creator has a whose name is
  • 14. Web Resource 3. Express meaning http://example.org/book/Tractatus_Logico-Philosophicus dc:contributor has a whose name is
  • 15. Web Resource 3. Express meaning http://example.org/book/Tractatus_Logico-Philosophicus dc:publisher which is has a
  • 16. Web Resource 3. Express meaning http://example.org/book/Tractatus_Logico-Philosophicus dc:date has a which is
  • 17. @prefix dc: <http://purl.org/dc/terms/> . @prefix : <http://example.org/book#> . :Tractatus_Logico-Philosophicus dc:title "Tractatus Logico-Philospohicus" . :Tractatus_Logico-Philosophicus dc:creator "Ludwig Wittgenstein" . :Tractatus_Logico-Philosophicus dc:contributor "Bertrand Russell" . :Tractatus_Logico-Philosophicus dc:publisher "Harcourt, Brace & Company, Inc." . :Tractatus_Logico-Philosophicus dc:date "1922" . Resulting triples 3. Express meaning
  • 18. <?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:dc="http://purl.org/dc/terms/" xmlns="http://example.org/book#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="http://example.org/book#Tractatus_Logico Philosophicus"> <dc:title>Tractatus Logicao-Philospohicus</dc:title> <dc:creator>Ludwig Wittgenstein</dc:creator> <dc:contributor>Bertrand Russell</dc:contributor> <dc:publisher>Harcourt, Brace &amp; Company, Inc.</dc:publisher> <dc:date>1922</dc:date> </rdf:Description> </rdf:RDF> Resulting triples in RDF/XML 3. Express meaning
  • 19. Semantic Web 4. Link to other Web resources – Progressively link to existing Web resources that someone else has defined already
  • 20. Web Resource 4. Link to other Web resources http://example.org/book/Tractatus_Logico-Philosophicus dc:creator has a whose name is
  • 21. Web Resource 4. Link to other Web resources http://example.org/book/Tractatus_Logico-Philosophicus dc:creator has a http://dbpedia.org/page/Ludwig_Wittgenstein whose name is
  • 22. Where is the semantic Web?
  • 23. RDF → for agents RDF annotations often express metadata (as in our book example) – usually stored in a separate .rdf file – useful for agents, limited use for humans
  • 24. RDFa → for agents and humans RDFa = RDF in attributes – a way to mark up data in a web page – RDFa encodes RDF triples in HTML – useful for agents and (relatively) easy to use for humans
  • 25. HTML <html> <head> <title>Tractatus Logico-Philosophicus</title> </head> <body> <p> <img src="tractatus.png" /><br /> Written by: Ludwig Wittgenstein <br /> With an Introduction by: Bertrand Russell <br /><br /> New York <br /> Harcourt, Brace & Company, Inc. <br /> London: Kegan Paul, Trench, Trubner & Co., Ltd. <br /> <p>1922</p> </body> </html>
  • 26. RDFa example <html prefix="dc: http://purl.org/dc/terms/“ base="http://example.org/book/Tractatus_Logico-Philosophicus"> <head> <title about="" property="dc:title">Tractatus Logico Philosophicus</title> </head> <body> <p about=""> <img src="tractatus.png" /><br /> Written by: <span property="dc:creator">Ludwig Wittgenstein</span> <br /> With an Introduction by: <span property="dc:contributor"> Bertrand Russell</span><br /><br /> New York <br /> <span property="dc:publisher">Harcourt, Brace & Company, Inc. </span><br /> London: Kegan Paul, Trench, Trubner & Co., Ltd. <br /> <p about=""><span property="dc:date">1922</span></p> </body> </html>
  • 27. RDFa – metadata vs. data RDFa mostly used for metadata, e.g. the book metadata as before But: the principle of the Semantic Web and Linked Data is to add meaning to metadata and data – Data could be metadata, – but it could be data, e.g. a book purchase at Amazon
  • 28. Forms, metadata vs. data e.g. Book purchase on Amazon First Name: Last Name: Jane Doe Email: jane.doe@example.com Password: ******** Gender: Birthday: 03 04 1976 Male Female
  • 29. 1976 Forms, metadata vs. data e.g. Book purchase on Amazon First Name: Last Name: Jane Doe Email: jane.doe@example.com Password: ******** Gender: Birthday: 03 04 Male FemaleTitle: Author: Tractatus Logico Phi Ludwig Wittgenstein Price: 25 GBP Amount: 1 Delivery Address: 10 Downing Street London SW1A 2AA United Kingdom
  • 30. 1976 Forms, metadata vs. data e.g. Book purchase on Amazon First Name: Jane Doe Email: jane.doe@example.com Password: ******** Gender: Birthday: 03 04 Male FemaleTitle: Author: Tractatus Logico Phi Ludwig Wittgenstein Price: 25 GBP Amount: 1 Delivery Address: 10 Downing Street London SW1A 2AA United Kingdom 197604 1 Cardholder: CC Number: Expiry Date: CVV: 999 Price: Type: Mastercard Jane Doe 5999 9999 9999 9999 04 13 25 GBP Last Name:
  • 31. Forms, metadata vs. data e.g. Book purchase on Amazon 197604 FemaleTitle: Author: Tractatus Logico Phi Ludwig Wittgenstein Price: 25 GBP Amount: 1 Delivery Address: 10 Downing Street London SW1A 2AA United Kingdom → metadata → metadata → metadata / data → data → data → data → data → data
  • 32. Issue – Adding RDFa for data to forms Form input elements can be annotated with RDFa But: RDFa annotations for input data is not possible → no binding
  • 33. Issue – Adding RDFa for data to forms e.g. “Jane” can not be defined as foaf:firstName First Name: Last Name: Jane Doe Email: jane.doe@example.com Password: ******** Gender: Birthday: 03 04 1976 Male Female <span about="" property="foaf:firstName" content=""> <input type="text" name=“First Name" value="" /> </span>span> No binding!
  • 34. Making input data available on the Semantic Web!
  • 35. Model and System for semantic Web applications – RDF-based model for forms (RaUL) http://purl.org/NET/raul# – RESTful Web service (ActiveRaUL) http://raul.deri.ie/raul – JavaScript RDFa API
  • 36. RaUL form model Defines meta model for form elements
  • 37. RaUL form model – Triples defining the structure of a form – Triples defining the data First Name: Last Name: Jane Doe Email: jane.doe@example.com Password: ******** Gender: Birthday: 03 04 1976 Male Female → foaf:firstName → foaf:surname → foaf:mbox → foaf:sha1 → foaf:gender → time:day, time:month, time:year
  • 38. ActiveRaUL Web service Model-View-Controller – Model: RaUL – View: Rendering service to generate RaUL-based Web forms in XHTML+RDFa – Controller: Web service that maps HTTP terms to CRUD operations on RaUL Web forms
  • 39. JavaScript RDFa API – Parses RDFa – Manages data binding of form input to data model
  • 40. Lifecycle 1. Form Modeling: form model in RDF based on the RaUL ontology – Actor: ontology engineer
  • 41. Lifecycle 2. Form Deployment: form submitted by calling ActiveRaUL – Generic form models in a public namespace → standard form models – Actor: ontology engineer
  • 42. Lifecycle 3. Form Usage: access and manipulate a form model by calling ActiveRaUL – submit instance data for a form → bound to a data model – Actor: Web user or agent
  • 43. Lifecycle 4. Data Reuse: Add link to existing, local data or data in the Linked data cloud – RDFa API retrieves data from that URI and prefills form controls – Actor: Form Provider
  • 44. Conclusion RDFa annotated Web forms which follow the principles of Linked Open Data. Advantages: 1. Non-ambiguous model: typed through an ontological model. 2. RDF data submission: submitted data encoded in RDF. 3. Explicit form structure: form elements are explicitly modelled as RDF statements. 4. External schema augmentation: reuse existing schemas for form data 5. Reuse of Linked Open Data: retrieve data from the Linked Open Data cloud