SlideShare a Scribd company logo
1 of 41
Download to read offline
Linked Data &
Semantic Web
Technology
Linked Open Data
for E-Commerce
Dr. Myungjin Lee
Linked Data & Semantic Web Technology
HTML
the standard markup language
used to create web pages
for human readers
https://lh3.googleusercontent.com/-ccsnKVbD3QM/UeBMnfg1E6I/AAAAAAAAAow/tujbFfH_h-I/s288/Girl-at-Computer.jpg
Linked Data & Semantic Web Technology
Problems – The Web of Documents
HTML HTML HTML
A B C
untyped
links
untyped
links
Data Silos
Unstructured
↑
Structured
Meaningless
for Human
Databases
Web
Linked Data & Semantic Web Technology
네이버 지식쇼핑
http://shopping.naver.com/search/all_search.nhn?query=ipad&cat_id=&frm=NVSHSRC
Linked Data & Semantic Web Technology
네이버 지식쇼핑
Shop A
Shop B
<<<begin>>>
<<<mapid>>>AB1234
<<<pname>>>[번호 이동] 삼성 애니콜 SCH-M620
<<<price>>>200000
<<<pgurl>>>http://www.naver.com/php?pro=12345
<<<igurl>>>http://www.naver.com/image/12345.jpg
<<<ftend>>>
<<<begin>>>
<<<mapid>>>AB1234
<<<pname>>>[번호 이동] 삼성 애니콜 SCH-M620
<<<price>>>200000
<<<pgurl>>>http://www.naver.com/php?pro=12345
<<<igurl>>>http://www.naver.com/image/12345.jpg
<<<ftend>>>
Naver
Agent
EP URL
EP URL
Linked Data & Semantic Web Technology
What we do
1. Publish structured data on the Web
A
Thing
Thing
C
Thing
Thing
B
Thing
Thing
Databases
Web
Structured
↑
Structured
Linked Data & Semantic Web Technology
What we do
2. Describe about data as machine readable and processible
A
Thing
Thing
C
Thing
Thing
B
Thing
Thing
Databases
Web
Structured
↑
Structured
for Machine
Linked Data & Semantic Web Technology
What we do
3. Link to other data with semantics
A
typed
links
Thing
Thing
C
Thing
Thing
B
Thing
Thing
typed
links
Databases
Web
Structured
↑
Structured
for Machine
Data Share
Meaningful
Linked Data & Semantic Web Technology
The Web of Data
Christian Bizer, Tom Heath, and Tim Berners-Lee, Linked Data: Principles and State of the Art, 2008.
A
typed
links
Thing
Thing
C
Thing
Thing
D
Thing
Thing
E
Thing
Thing
B
Thing
Thing
typed
links
typed
links
typed
links
Linked Data
Mashups
Search
Engines
Linked Data
Browsers
Linked Data & Semantic Web Technology
The Web of Data
A CB
http://companyinfo.comhttp://apple.comhttp://amazon.com
product1
iPad
Apple
2014.10
regist384
price
1G
memory
500g
weight
April 1, 1976
iOS7.0
os
founded
Tim Cook
ceo
sameAs
manufactured
Linked Data & Semantic Web Technology
What we need
• a general method for conceptual description or modeling of
information on the Web
– URI
– XML
– RDF
• a shared vocabulary to denote the types, properties and
interrelationships of those concepts
– RDFS
– OWL
– Ontology
Linked Data & Semantic Web Technology
Linked Data
• Linked data describes a method of publishing structured data
so that it can be interlinked and become more useful.
The Semantic Web isn't just about putting data
on the web. It is about making links, so that a
person or machine can explore the web of data.
With linked data, when you have some of it,
you can find other, related, data.
- A roadmap to the Semantic Web by Tim Berners-Lee
http://images.theage.com.au/2010/09/29/1954774/Tim_Berners_Lee_Lead-420x0.jpg
Linked Data & Semantic Web Technology
What we know
an elemental syntax
for content structure
within documents
a simple language
for expressing data models,
which refer to objects ("resources")
and their relationships
more vocabulary
for describing properties and classes
a vocabulary for describing
properties and classes
of RDF-based resources
a protocol and query
language
for semantic web data
sources
to exchange rules
between many
"rules languages"
a string of characters used to identify a name or a resource
http://ai.ia.agh.edu.pl/wiki/_media/hekate:semweb:sw_layer_cakes.png
Linked Data & Semantic Web Technology
URI (Uniform Resource Identifier)
Myungjin Lee
881002-1045617
identifier
name
resident registration number
http://www.semantics.kr/person/mjLee
identifier in the web
Linked Data & Semantic Web Technology
XML (Extensible Markup Language)
• a markup language used for the representation of arbitrary data
structure in a format that is both human-readable and machine-
readable
XML representation of “Myungjin Lee is Yura’s husband.”
<conjugalrelation>
<husband>Myungjin Lee</husband>
<wife>Yura</wife>
</conjugalrelation>
<conjugalrelation husband=“Myungjin Lee”>
<wife>Yura</wife>
</conjugalrelation>
<conjugalrelation husband=“Myungjin Lee” wife=“Yura” />
same contents, but different representation
We need a general method for conceptual description.
Linked Data & Semantic Web Technology
RDF (Resource Description Framework)
• a general method for conceptual description or modeling of
information that is implemented in web resources, using a
variety of syntax formats
has wife
http://semantics.kr/myungjinlee http://semantics.kr/hye-jinhan
http://semantics.kr/rel/hasWife
Subject
URI reference
Predicate
URI reference
Object
URI reference or Literal
Triple
http://www.vaio.or.kr/files/attach/images/9979/195/792/5d296375f2a6b1096cb062f22ee7e046.jpg
Linked Data & Semantic Web Technology
RDFS (RDF Schema)
• to define classes and properties that may be used to describe
classes, properties and other resources
has wife
♂ ♀
is a is a
Male Female

Person
subset ofsubset of
http://www.vaio.or.kr/files/attach/images/9979/195/792/5d296375f2a6b1096cb062f22ee7e046.jpg
Linked Data & Semantic Web Technology
OWL (Web Ontology Language)
• knowledge representation languages for authoring ontologies
• when you need more expressiveness,
– such as,
Man Woman∩ = Ø
Person Person
descendant
Person
descendant
descendant
Husband Wife
1:1
Linked Data & Semantic Web Technology
SPARQL
• Why do we need a query language for RDF?
– Why de we need a query language for RDB?
– to get to the knowledge from RDF
• SPARQL Protocol and RDF Query Language
– to retrieve and manipulate data stored in Resource Description
Framework format
– to use SPARQL via HTTP
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
WHERE {
?person a foaf:Person.
?person foaf:name ?name.
?person foaf:mbox ?email.
}
RDF
Knowledge
Base
?name ?email
Myungjin Lee mjlee@li-st.com
Gildong Hong gildong@daum.net
Grace Byun grace@naver.com
Linked Data & Semantic Web Technology
Four Principles of Linked Data
1. Use URIs to identify things.
2. Use HTTP URIs so that these things can be referred to and
looked up ("dereferenced") by people and user agents.
3. Provide useful information about the thing when its URI is
dereferenced, using standard formats such as RDF/XML.
4. Include links to other, related URIs in the exposed data to
improve discovery of other related information on the Web.
Linked Data & Semantic Web Technology
Linked Data & Semantic Web Technology
1. Use URIs as names for things
http://lod.nl.go.kr/resource/KMO200937463
Linked Data & Semantic Web Technology
2. Use HTTP URIs so that these things can be
referred to and looked up ("dereferenced")
by people and user agents.
http://lod.nl.go.kr/resource/KMO200937463
Linked Data & Semantic Web Technology
3. Provide useful information about the
thing when its URI is dereferenced, using
standard formats such as RDF/XML.
Linked Data & Semantic Web Technology
4. Include links to other, related URIs in the
exposed data to improve discovery of
other related information on the Web.
Linked Data & Semantic Web Technology
The Linking Open Data cloud diagram
Linked Data & Semantic Web Technology
Linked Data & Semantic Web Technology
The Linking Open Data cloud diagram
Linked Data & Semantic Web Technology
Media
User Generated Content
Publications
Government
Geographic
Cross-Domain
Life Sciences
Domain Number of datasets Triples (Out-)Links
Media 25 18,4185,2061 5044,0705
Geographic 31 61,4553,2484 3581,2328
Government 49 133,1500,9400 1934,3519
Publications 87 29,5072,0693 1,3992,5218
Cross-domain 41 41,8463,5715 6318,3065
Life Sciences 41 30,3633,6004 1,9184,4090
User-generated Content 20 1,3412,7413 344,9143
Total 295 316,3421,3770 5,0399,8829
http://www.slideshare.net/lysander07/13-semantic-web-technologies-linked-data-semantic-search
Linked Data & Semantic Web Technology
GoodRelations
• a global schema for commerce data on the Web
– the most powerful vocabulary for publishing all of the details of your
products and services in a way friendly to search engines, mobile
applications, and browser extensions
– V 1.0, Release 2011-10-01
• http://www.heppnetz.de/projects/goodrelations/
Linked Data & Semantic Web Technology
The goal of GoodRelations
• to define a data structure for e-commerce
– industry-neutral, i.e. suited for consumer electronics, cars, tickets, real
estate, labor, services, or any other type of goods,
– valid across the different stages of the value chain, i.e. from raw materials
through retail to after-sales services, and
– syntax-neutral, i.e. it should work in microdata, RDFa, RDF/XML, Turtle,
JSON, OData, GData, or any other popular syntax.
Linked Data & Semantic Web Technology
Basic Structure of Offers
1. An agent (e.g. a person or an organization),
2. An object (e.g. a camcorder, a house, a car,...) or service (e.g. a
haircut),
3. A promise (offer) to transfer some rights (ownership, temporary
usage, a certain license, ...) on the object or to provide the
service for a certain compensation (e.g. an amount of money),
made by the agent and related to the object or service, and
4. A location from which this offer is available (e.g. a store, a bus
stop, a gas station,...).
Linked Data & Semantic Web Technology
Valuable Types of Links
Martin Hepp, Linked Data in E-Commerce – The GoodRelations Ontology, ISKO UK Conference on Linked Data (2010)
Linked Data & Semantic Web Technology http://www.heppnetz.de/ontologies/goodrelations/goodrelations-UML.png
Linked Data & Semantic Web Technology
Examples of GoodRelations
• Company
Linked Data & Semantic Web Technology
Examples of GoodRelations
• Offer / Product
Linked Data & Semantic Web Technology
Prominent Users of GoodRelations
• Google
– for sending structured information for Google Rich Snippets to Google (since 11/2010).
• Yahoo
– for sending structured information for their SearchMonkey feature (since 10/2008).
• Best Buy
– fundamental part of their digital marketing strategy and publishes full catalog, store, and special offer with
GoodRelations on their production Web sites.
• O'Reilly
– for Semantic SEO of all of their book titles.
• Volkswagen UK
– for exposing car feature and car component information at massive scale.
• Renault UK
– for Semantic SEO for their merchandise shop.
• OpenLink Software
– the fundamental vocabulary for E-Commerce technology based on Virtuoso and other products.
• Peek & Cloppenburg
– for publishing information on all European stores plus the brands available in each one of them.
• CSN Stores
– for Semantic SEO of all of their 2,000,000 item pages and substores.
• Arzneimittel.de, one of Germany's leading mail order pharmacies
– using GoodRelations in RDFa on all of their ca. 250,000 item pages.
• Rakuten.de, a leading German online mall
– to aggregates ~6500 merchants with more than 16 million item pages
Linked Data & Semantic Web Technology
SPARQL Endpoint of Linked Open Commerce
http://loc.openlinksw.com/sparql
Linked Data & Semantic Web Technology
Use Case of GoodRelations
Linked Data & Semantic Web Technology
Intelligent Shopping Agent
• SWCL (Semantic Web Constraint Language)
– to embed techniques from the conventional mathematical programming
field and is interested in solving optimization problems
Product Ontology
Constraint Model
Linked Data & Semantic Web Technology
Intelligent Shopping Agent
Linked Data & Semantic Web Technology
References
• Martin Hepp, The GoodRelations Ontology for E-Commerce, 3rd KRDB School on Trends in the Web of Data (2010).
http://www.slideshare.net/mhepp/krdb2010goodrelations
• Martin Hepp, Linked Data in E-Commerce - The GoodRelations Ontology, ISKO UK Conference on Linked Data
(2010).
http://www.slideshare.net/mhepp/isko-2010-linked-data-in-ecommerce-the-goodrelations-ontology
• 네이버 지식쇼핑 EP (Engine Page) 제작 및 연동 가이드
http://imgshopping.naver.com/admin/join/download/db_url/db_url_guide_new.pdf
• Linked Open Commerce
http://linkedopencommerce.com/
• The GoodRelations Wiki
http://wiki.goodrelations-vocabulary.org/Main_Page
• Myungjin Lee, Interlinking for Linked Data (2014).
http://www.slideshare.net/onlyjiny/interlinking-for-linked-data
• Myungjin Lee, Linked Open Data Tutorial (2014).
http://www.slideshare.net/onlyjiny/linked-open-data-tutorial
• Myungjin Lee, Linked Data Technology and Status (2013).
http://www.slideshare.net/onlyjiny/linkeddata
• GoodRelations
http://www.ebusiness-unibw.org/wiki/GoodRelations
• GoodRelations Example Sites
http://notes.3kbo.com/goodrelations-sites
• Hak-Jin Kim, Wooju Kim and Myungjin Lee, Semantic Web Constraint Language and its application to an intelligent
shopping agent, Decision Support Systems, Volume 46, Issue 4 (2009)
Linked Data & Semantic Web Technology
Dr. Myungjin Lee
e-Mail : mjlee@li-st.com
Twitter : http://twitter.com/MyungjinLee
Facebook : http://www.facebook.com/mjinlee
SlideShare : http://www.slideshare.net/onlyjiny/
http://www.beauticians.nl/wp-content/uploads/2012/01/contact1.jpg

More Related Content

Viewers also liked

Jena based implementation of a iso 11179 meta data registry
Jena based implementation of a iso 11179 meta data registryJena based implementation of a iso 11179 meta data registry
Jena based implementation of a iso 11179 meta data registryA. Anil Sinaci
 
An Introduction to the Jena API
An Introduction to the Jena APIAn Introduction to the Jena API
An Introduction to the Jena APICraig Trim
 
Semantic Integration with Apache Jena and Stanbol
Semantic Integration with Apache Jena and StanbolSemantic Integration with Apache Jena and Stanbol
Semantic Integration with Apache Jena and StanbolAll Things Open
 
Unit 1 rules of inference
Unit 1  rules of inferenceUnit 1  rules of inference
Unit 1 rules of inferenceraksharao
 
Navigli sssw
Navigli ssswNavigli sssw
Navigli ssswSSSW
 
Inference on the Semantic Web
Inference on the Semantic WebInference on the Semantic Web
Inference on the Semantic WebMyungjin Lee
 
What is pattern recognition (lecture 4 of 6)
What is pattern recognition (lecture 4 of 6)What is pattern recognition (lecture 4 of 6)
What is pattern recognition (lecture 4 of 6)Randa Elanwar
 
Introduction of Deep Learning
Introduction of Deep LearningIntroduction of Deep Learning
Introduction of Deep LearningMyungjin Lee
 
Tutorial Cognition - Irene
Tutorial Cognition - IreneTutorial Cognition - Irene
Tutorial Cognition - IreneSSSW
 
Introduction to open data quality et
Introduction to open data quality etIntroduction to open data quality et
Introduction to open data quality etOpen Data Support
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) DataAli Khalili
 
Quick Linked Data Introduction
Quick Linked Data IntroductionQuick Linked Data Introduction
Quick Linked Data IntroductionMichael Hausenblas
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open DataDerilinx
 
LODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopLODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopMyungjin Lee
 
Statistical classification: A review on some techniques
Statistical classification: A review on some techniquesStatistical classification: A review on some techniques
Statistical classification: A review on some techniquesGiorgos Bamparopoulos
 

Viewers also liked (20)

Jena based implementation of a iso 11179 meta data registry
Jena based implementation of a iso 11179 meta data registryJena based implementation of a iso 11179 meta data registry
Jena based implementation of a iso 11179 meta data registry
 
An Introduction to the Jena API
An Introduction to the Jena APIAn Introduction to the Jena API
An Introduction to the Jena API
 
Semantic Integration with Apache Jena and Stanbol
Semantic Integration with Apache Jena and StanbolSemantic Integration with Apache Jena and Stanbol
Semantic Integration with Apache Jena and Stanbol
 
Unit 1 rules of inference
Unit 1  rules of inferenceUnit 1  rules of inference
Unit 1 rules of inference
 
Navigli sssw
Navigli ssswNavigli sssw
Navigli sssw
 
Inference on the Semantic Web
Inference on the Semantic WebInference on the Semantic Web
Inference on the Semantic Web
 
What is pattern recognition (lecture 4 of 6)
What is pattern recognition (lecture 4 of 6)What is pattern recognition (lecture 4 of 6)
What is pattern recognition (lecture 4 of 6)
 
Introduction of Deep Learning
Introduction of Deep LearningIntroduction of Deep Learning
Introduction of Deep Learning
 
Tutorial Cognition - Irene
Tutorial Cognition - IreneTutorial Cognition - Irene
Tutorial Cognition - Irene
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Introduction to open data quality et
Introduction to open data quality etIntroduction to open data quality et
Introduction to open data quality et
 
Pattern recognition
Pattern recognitionPattern recognition
Pattern recognition
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) Data
 
Quick Linked Data Introduction
Quick Linked Data IntroductionQuick Linked Data Introduction
Quick Linked Data Introduction
 
Open Data and Linked Data
Open Data and Linked DataOpen Data and Linked Data
Open Data and Linked Data
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
LODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopLODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data Workshop
 
Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
 
Statistical classification: A review on some techniques
Statistical classification: A review on some techniquesStatistical classification: A review on some techniques
Statistical classification: A review on some techniques
 

More from Myungjin Lee

지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)Myungjin Lee
 
JSP 프로그래밍 #05 HTML과 JSP
JSP 프로그래밍 #05 HTML과 JSPJSP 프로그래밍 #05 HTML과 JSP
JSP 프로그래밍 #05 HTML과 JSPMyungjin Lee
 
JSP 프로그래밍 #04 JSP 의 기본
JSP 프로그래밍 #04 JSP 의 기본JSP 프로그래밍 #04 JSP 의 기본
JSP 프로그래밍 #04 JSP 의 기본Myungjin Lee
 
JSP 프로그래밍 #03 서블릿
JSP 프로그래밍 #03 서블릿JSP 프로그래밍 #03 서블릿
JSP 프로그래밍 #03 서블릿Myungjin Lee
 
JSP 프로그래밍 #02 서블릿과 JSP 시작하기
JSP 프로그래밍 #02 서블릿과 JSP 시작하기JSP 프로그래밍 #02 서블릿과 JSP 시작하기
JSP 프로그래밍 #02 서블릿과 JSP 시작하기Myungjin Lee
 
JSP 프로그래밍 #01 웹 프로그래밍
JSP 프로그래밍 #01 웹 프로그래밍JSP 프로그래밍 #01 웹 프로그래밍
JSP 프로그래밍 #01 웹 프로그래밍Myungjin Lee
 
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)Myungjin Lee
 
오픈 데이터와 인공지능
오픈 데이터와 인공지능오픈 데이터와 인공지능
오픈 데이터와 인공지능Myungjin Lee
 
법령 온톨로지의 구축 및 검색
법령 온톨로지의 구축 및 검색법령 온톨로지의 구축 및 검색
법령 온톨로지의 구축 및 검색Myungjin Lee
 
도서관과 Linked Data
도서관과 Linked Data도서관과 Linked Data
도서관과 Linked DataMyungjin Lee
 
공공데이터, 현재 우리는?
공공데이터, 현재 우리는?공공데이터, 현재 우리는?
공공데이터, 현재 우리는?Myungjin Lee
 
쉽게 이해하는 LOD
쉽게 이해하는 LOD쉽게 이해하는 LOD
쉽게 이해하는 LODMyungjin Lee
 
Interlinking for Linked Data
Interlinking for Linked DataInterlinking for Linked Data
Interlinking for Linked DataMyungjin Lee
 
Linked Open Data Tutorial
Linked Open Data TutorialLinked Open Data Tutorial
Linked Open Data TutorialMyungjin Lee
 
Linked Data Usecases
Linked Data UsecasesLinked Data Usecases
Linked Data UsecasesMyungjin Lee
 
공공데이터와 Linked open data
공공데이터와 Linked open data공공데이터와 Linked open data
공공데이터와 Linked open dataMyungjin Lee
 
공공데이터와 Linked open data
공공데이터와 Linked open data공공데이터와 Linked open data
공공데이터와 Linked open dataMyungjin Lee
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for BeginnerMyungjin Lee
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLMyungjin Lee
 
Development of Twitter Application #8 - Streaming API
Development of Twitter Application #8 - Streaming APIDevelopment of Twitter Application #8 - Streaming API
Development of Twitter Application #8 - Streaming APIMyungjin Lee
 

More from Myungjin Lee (20)

지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
지식그래프 개념과 활용방안 (Knowledge Graph - Introduction and Use Cases)
 
JSP 프로그래밍 #05 HTML과 JSP
JSP 프로그래밍 #05 HTML과 JSPJSP 프로그래밍 #05 HTML과 JSP
JSP 프로그래밍 #05 HTML과 JSP
 
JSP 프로그래밍 #04 JSP 의 기본
JSP 프로그래밍 #04 JSP 의 기본JSP 프로그래밍 #04 JSP 의 기본
JSP 프로그래밍 #04 JSP 의 기본
 
JSP 프로그래밍 #03 서블릿
JSP 프로그래밍 #03 서블릿JSP 프로그래밍 #03 서블릿
JSP 프로그래밍 #03 서블릿
 
JSP 프로그래밍 #02 서블릿과 JSP 시작하기
JSP 프로그래밍 #02 서블릿과 JSP 시작하기JSP 프로그래밍 #02 서블릿과 JSP 시작하기
JSP 프로그래밍 #02 서블릿과 JSP 시작하기
 
JSP 프로그래밍 #01 웹 프로그래밍
JSP 프로그래밍 #01 웹 프로그래밍JSP 프로그래밍 #01 웹 프로그래밍
JSP 프로그래밍 #01 웹 프로그래밍
 
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
관광 지식베이스와 스마트 관광 서비스 (Knowledge base and Smart Tourism)
 
오픈 데이터와 인공지능
오픈 데이터와 인공지능오픈 데이터와 인공지능
오픈 데이터와 인공지능
 
법령 온톨로지의 구축 및 검색
법령 온톨로지의 구축 및 검색법령 온톨로지의 구축 및 검색
법령 온톨로지의 구축 및 검색
 
도서관과 Linked Data
도서관과 Linked Data도서관과 Linked Data
도서관과 Linked Data
 
공공데이터, 현재 우리는?
공공데이터, 현재 우리는?공공데이터, 현재 우리는?
공공데이터, 현재 우리는?
 
쉽게 이해하는 LOD
쉽게 이해하는 LOD쉽게 이해하는 LOD
쉽게 이해하는 LOD
 
Interlinking for Linked Data
Interlinking for Linked DataInterlinking for Linked Data
Interlinking for Linked Data
 
Linked Open Data Tutorial
Linked Open Data TutorialLinked Open Data Tutorial
Linked Open Data Tutorial
 
Linked Data Usecases
Linked Data UsecasesLinked Data Usecases
Linked Data Usecases
 
공공데이터와 Linked open data
공공데이터와 Linked open data공공데이터와 Linked open data
공공데이터와 Linked open data
 
공공데이터와 Linked open data
공공데이터와 Linked open data공공데이터와 Linked open data
공공데이터와 Linked open data
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for Beginner
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
 
Development of Twitter Application #8 - Streaming API
Development of Twitter Application #8 - Streaming APIDevelopment of Twitter Application #8 - Streaming API
Development of Twitter Application #8 - Streaming API
 

Recently uploaded

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
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
 
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
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
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
 
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
 
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
 

Recently uploaded (20)

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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
 
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
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
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
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

Linked Open Data for E-Commerce

  • 1. Linked Data & Semantic Web Technology Linked Open Data for E-Commerce Dr. Myungjin Lee
  • 2. Linked Data & Semantic Web Technology HTML the standard markup language used to create web pages for human readers https://lh3.googleusercontent.com/-ccsnKVbD3QM/UeBMnfg1E6I/AAAAAAAAAow/tujbFfH_h-I/s288/Girl-at-Computer.jpg
  • 3. Linked Data & Semantic Web Technology Problems – The Web of Documents HTML HTML HTML A B C untyped links untyped links Data Silos Unstructured ↑ Structured Meaningless for Human Databases Web
  • 4. Linked Data & Semantic Web Technology 네이버 지식쇼핑 http://shopping.naver.com/search/all_search.nhn?query=ipad&cat_id=&frm=NVSHSRC
  • 5. Linked Data & Semantic Web Technology 네이버 지식쇼핑 Shop A Shop B <<<begin>>> <<<mapid>>>AB1234 <<<pname>>>[번호 이동] 삼성 애니콜 SCH-M620 <<<price>>>200000 <<<pgurl>>>http://www.naver.com/php?pro=12345 <<<igurl>>>http://www.naver.com/image/12345.jpg <<<ftend>>> <<<begin>>> <<<mapid>>>AB1234 <<<pname>>>[번호 이동] 삼성 애니콜 SCH-M620 <<<price>>>200000 <<<pgurl>>>http://www.naver.com/php?pro=12345 <<<igurl>>>http://www.naver.com/image/12345.jpg <<<ftend>>> Naver Agent EP URL EP URL
  • 6. Linked Data & Semantic Web Technology What we do 1. Publish structured data on the Web A Thing Thing C Thing Thing B Thing Thing Databases Web Structured ↑ Structured
  • 7. Linked Data & Semantic Web Technology What we do 2. Describe about data as machine readable and processible A Thing Thing C Thing Thing B Thing Thing Databases Web Structured ↑ Structured for Machine
  • 8. Linked Data & Semantic Web Technology What we do 3. Link to other data with semantics A typed links Thing Thing C Thing Thing B Thing Thing typed links Databases Web Structured ↑ Structured for Machine Data Share Meaningful
  • 9. Linked Data & Semantic Web Technology The Web of Data Christian Bizer, Tom Heath, and Tim Berners-Lee, Linked Data: Principles and State of the Art, 2008. A typed links Thing Thing C Thing Thing D Thing Thing E Thing Thing B Thing Thing typed links typed links typed links Linked Data Mashups Search Engines Linked Data Browsers
  • 10. Linked Data & Semantic Web Technology The Web of Data A CB http://companyinfo.comhttp://apple.comhttp://amazon.com product1 iPad Apple 2014.10 regist384 price 1G memory 500g weight April 1, 1976 iOS7.0 os founded Tim Cook ceo sameAs manufactured
  • 11. Linked Data & Semantic Web Technology What we need • a general method for conceptual description or modeling of information on the Web – URI – XML – RDF • a shared vocabulary to denote the types, properties and interrelationships of those concepts – RDFS – OWL – Ontology
  • 12. Linked Data & Semantic Web Technology Linked Data • Linked data describes a method of publishing structured data so that it can be interlinked and become more useful. The Semantic Web isn't just about putting data on the web. It is about making links, so that a person or machine can explore the web of data. With linked data, when you have some of it, you can find other, related, data. - A roadmap to the Semantic Web by Tim Berners-Lee http://images.theage.com.au/2010/09/29/1954774/Tim_Berners_Lee_Lead-420x0.jpg
  • 13. Linked Data & Semantic Web Technology What we know an elemental syntax for content structure within documents a simple language for expressing data models, which refer to objects ("resources") and their relationships more vocabulary for describing properties and classes a vocabulary for describing properties and classes of RDF-based resources a protocol and query language for semantic web data sources to exchange rules between many "rules languages" a string of characters used to identify a name or a resource http://ai.ia.agh.edu.pl/wiki/_media/hekate:semweb:sw_layer_cakes.png
  • 14. Linked Data & Semantic Web Technology URI (Uniform Resource Identifier) Myungjin Lee 881002-1045617 identifier name resident registration number http://www.semantics.kr/person/mjLee identifier in the web
  • 15. Linked Data & Semantic Web Technology XML (Extensible Markup Language) • a markup language used for the representation of arbitrary data structure in a format that is both human-readable and machine- readable XML representation of “Myungjin Lee is Yura’s husband.” <conjugalrelation> <husband>Myungjin Lee</husband> <wife>Yura</wife> </conjugalrelation> <conjugalrelation husband=“Myungjin Lee”> <wife>Yura</wife> </conjugalrelation> <conjugalrelation husband=“Myungjin Lee” wife=“Yura” /> same contents, but different representation We need a general method for conceptual description.
  • 16. Linked Data & Semantic Web Technology RDF (Resource Description Framework) • a general method for conceptual description or modeling of information that is implemented in web resources, using a variety of syntax formats has wife http://semantics.kr/myungjinlee http://semantics.kr/hye-jinhan http://semantics.kr/rel/hasWife Subject URI reference Predicate URI reference Object URI reference or Literal Triple http://www.vaio.or.kr/files/attach/images/9979/195/792/5d296375f2a6b1096cb062f22ee7e046.jpg
  • 17. Linked Data & Semantic Web Technology RDFS (RDF Schema) • to define classes and properties that may be used to describe classes, properties and other resources has wife ♂ ♀ is a is a Male Female  Person subset ofsubset of http://www.vaio.or.kr/files/attach/images/9979/195/792/5d296375f2a6b1096cb062f22ee7e046.jpg
  • 18. Linked Data & Semantic Web Technology OWL (Web Ontology Language) • knowledge representation languages for authoring ontologies • when you need more expressiveness, – such as, Man Woman∩ = Ø Person Person descendant Person descendant descendant Husband Wife 1:1
  • 19. Linked Data & Semantic Web Technology SPARQL • Why do we need a query language for RDF? – Why de we need a query language for RDB? – to get to the knowledge from RDF • SPARQL Protocol and RDF Query Language – to retrieve and manipulate data stored in Resource Description Framework format – to use SPARQL via HTTP PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?name ?email WHERE { ?person a foaf:Person. ?person foaf:name ?name. ?person foaf:mbox ?email. } RDF Knowledge Base ?name ?email Myungjin Lee mjlee@li-st.com Gildong Hong gildong@daum.net Grace Byun grace@naver.com
  • 20. Linked Data & Semantic Web Technology Four Principles of Linked Data 1. Use URIs to identify things. 2. Use HTTP URIs so that these things can be referred to and looked up ("dereferenced") by people and user agents. 3. Provide useful information about the thing when its URI is dereferenced, using standard formats such as RDF/XML. 4. Include links to other, related URIs in the exposed data to improve discovery of other related information on the Web.
  • 21. Linked Data & Semantic Web Technology
  • 22. Linked Data & Semantic Web Technology 1. Use URIs as names for things http://lod.nl.go.kr/resource/KMO200937463
  • 23. Linked Data & Semantic Web Technology 2. Use HTTP URIs so that these things can be referred to and looked up ("dereferenced") by people and user agents. http://lod.nl.go.kr/resource/KMO200937463
  • 24. Linked Data & Semantic Web Technology 3. Provide useful information about the thing when its URI is dereferenced, using standard formats such as RDF/XML.
  • 25. Linked Data & Semantic Web Technology 4. Include links to other, related URIs in the exposed data to improve discovery of other related information on the Web.
  • 26. Linked Data & Semantic Web Technology The Linking Open Data cloud diagram Linked Data & Semantic Web Technology
  • 27. Linked Data & Semantic Web Technology The Linking Open Data cloud diagram Linked Data & Semantic Web Technology Media User Generated Content Publications Government Geographic Cross-Domain Life Sciences Domain Number of datasets Triples (Out-)Links Media 25 18,4185,2061 5044,0705 Geographic 31 61,4553,2484 3581,2328 Government 49 133,1500,9400 1934,3519 Publications 87 29,5072,0693 1,3992,5218 Cross-domain 41 41,8463,5715 6318,3065 Life Sciences 41 30,3633,6004 1,9184,4090 User-generated Content 20 1,3412,7413 344,9143 Total 295 316,3421,3770 5,0399,8829 http://www.slideshare.net/lysander07/13-semantic-web-technologies-linked-data-semantic-search
  • 28. Linked Data & Semantic Web Technology GoodRelations • a global schema for commerce data on the Web – the most powerful vocabulary for publishing all of the details of your products and services in a way friendly to search engines, mobile applications, and browser extensions – V 1.0, Release 2011-10-01 • http://www.heppnetz.de/projects/goodrelations/
  • 29. Linked Data & Semantic Web Technology The goal of GoodRelations • to define a data structure for e-commerce – industry-neutral, i.e. suited for consumer electronics, cars, tickets, real estate, labor, services, or any other type of goods, – valid across the different stages of the value chain, i.e. from raw materials through retail to after-sales services, and – syntax-neutral, i.e. it should work in microdata, RDFa, RDF/XML, Turtle, JSON, OData, GData, or any other popular syntax.
  • 30. Linked Data & Semantic Web Technology Basic Structure of Offers 1. An agent (e.g. a person or an organization), 2. An object (e.g. a camcorder, a house, a car,...) or service (e.g. a haircut), 3. A promise (offer) to transfer some rights (ownership, temporary usage, a certain license, ...) on the object or to provide the service for a certain compensation (e.g. an amount of money), made by the agent and related to the object or service, and 4. A location from which this offer is available (e.g. a store, a bus stop, a gas station,...).
  • 31. Linked Data & Semantic Web Technology Valuable Types of Links Martin Hepp, Linked Data in E-Commerce – The GoodRelations Ontology, ISKO UK Conference on Linked Data (2010)
  • 32. Linked Data & Semantic Web Technology http://www.heppnetz.de/ontologies/goodrelations/goodrelations-UML.png
  • 33. Linked Data & Semantic Web Technology Examples of GoodRelations • Company
  • 34. Linked Data & Semantic Web Technology Examples of GoodRelations • Offer / Product
  • 35. Linked Data & Semantic Web Technology Prominent Users of GoodRelations • Google – for sending structured information for Google Rich Snippets to Google (since 11/2010). • Yahoo – for sending structured information for their SearchMonkey feature (since 10/2008). • Best Buy – fundamental part of their digital marketing strategy and publishes full catalog, store, and special offer with GoodRelations on their production Web sites. • O'Reilly – for Semantic SEO of all of their book titles. • Volkswagen UK – for exposing car feature and car component information at massive scale. • Renault UK – for Semantic SEO for their merchandise shop. • OpenLink Software – the fundamental vocabulary for E-Commerce technology based on Virtuoso and other products. • Peek & Cloppenburg – for publishing information on all European stores plus the brands available in each one of them. • CSN Stores – for Semantic SEO of all of their 2,000,000 item pages and substores. • Arzneimittel.de, one of Germany's leading mail order pharmacies – using GoodRelations in RDFa on all of their ca. 250,000 item pages. • Rakuten.de, a leading German online mall – to aggregates ~6500 merchants with more than 16 million item pages
  • 36. Linked Data & Semantic Web Technology SPARQL Endpoint of Linked Open Commerce http://loc.openlinksw.com/sparql
  • 37. Linked Data & Semantic Web Technology Use Case of GoodRelations
  • 38. Linked Data & Semantic Web Technology Intelligent Shopping Agent • SWCL (Semantic Web Constraint Language) – to embed techniques from the conventional mathematical programming field and is interested in solving optimization problems Product Ontology Constraint Model
  • 39. Linked Data & Semantic Web Technology Intelligent Shopping Agent
  • 40. Linked Data & Semantic Web Technology References • Martin Hepp, The GoodRelations Ontology for E-Commerce, 3rd KRDB School on Trends in the Web of Data (2010). http://www.slideshare.net/mhepp/krdb2010goodrelations • Martin Hepp, Linked Data in E-Commerce - The GoodRelations Ontology, ISKO UK Conference on Linked Data (2010). http://www.slideshare.net/mhepp/isko-2010-linked-data-in-ecommerce-the-goodrelations-ontology • 네이버 지식쇼핑 EP (Engine Page) 제작 및 연동 가이드 http://imgshopping.naver.com/admin/join/download/db_url/db_url_guide_new.pdf • Linked Open Commerce http://linkedopencommerce.com/ • The GoodRelations Wiki http://wiki.goodrelations-vocabulary.org/Main_Page • Myungjin Lee, Interlinking for Linked Data (2014). http://www.slideshare.net/onlyjiny/interlinking-for-linked-data • Myungjin Lee, Linked Open Data Tutorial (2014). http://www.slideshare.net/onlyjiny/linked-open-data-tutorial • Myungjin Lee, Linked Data Technology and Status (2013). http://www.slideshare.net/onlyjiny/linkeddata • GoodRelations http://www.ebusiness-unibw.org/wiki/GoodRelations • GoodRelations Example Sites http://notes.3kbo.com/goodrelations-sites • Hak-Jin Kim, Wooju Kim and Myungjin Lee, Semantic Web Constraint Language and its application to an intelligent shopping agent, Decision Support Systems, Volume 46, Issue 4 (2009)
  • 41. Linked Data & Semantic Web Technology Dr. Myungjin Lee e-Mail : mjlee@li-st.com Twitter : http://twitter.com/MyungjinLee Facebook : http://www.facebook.com/mjinlee SlideShare : http://www.slideshare.net/onlyjiny/ http://www.beauticians.nl/wp-content/uploads/2012/01/contact1.jpg