SlideShare uma empresa Scribd logo
1 de 114
Baixar para ler offline
Rathachai CHAWUTHAI
Semantic Web Technology
Department of Computer Engineering, Faculty of Engineering
King Mongkut's Institute of Technology Ladkrabang
▪ Now
▪ Lecturer at Computer Engineering
▪ King Mongkut's Institute of Technology
Ladkrabang
▪ Education Background
▪ B.Eng. at KMITL
▪ M.Eng. at AIT
▪ Ph.D at SOKENDAI, Japan
▪ Work Experience
▪ Thomson Reuters Thailand (4 years)
▪ Punsarn Asia (1 years)
▪ NII, Japan (3 years)
2
Rathachai Chawuthai
Rathachai
rathachai
rathachai.c
Journal Papers and Book Chapters
▪ R. Chawuthai, H. Takeda, V. Wuwongse, U. Jinbo: “Presenting and Preserving the Change in Taxonomic Knowledge for
Linked Data”. Semantic Web Journal (2016)
▪ R. Chawuthai, U. Jinbo, H. Takeda: “Linked Open Data Model for Taxonomic Information”. In a book titled “Application
of Semantic Technology in Biodiversity Science”. IOS Press. (2018)
Conference and Workshop Papers
▪ R. Chawuthai, U. Jinbo, H. Takeda: “Linked Open Data Model for Taxonomic Information”. In a book titled “Application
of Semantic Technology in Biodiversity Science”. IOS Press. (2018)
▪ R. Chawuthai, H. Takeda: “RDF Graph Visualization by Interpreting Linked Data as Knowledge”. JIST, Springer. (2016)
▪ R. Chawuthai, H. Takeda, T. Hosoya: “Link Prediction in Linked Data of Interspecies Interactions Using Hybrid
Recommendation Approach”. JIST:, Springer (2014)
▪ C. Nonthakarn, R. Chawuthai, V. Wuwongse: “An Application Profile for Linked Teacher Profiles and Teaching
Resources”. ICADL, Springer. (2014)
▪ R. Chawuthai, V. Wuwongse, H. Takeda: “A Formal Approach to the Modelling of Digital Archives”. ICADL: 179-188,
Springer. (2012)
▪ R. Chawuthai, H. Takeda, V. Wuwongse, U. Jinbo: “A Logical Model for Taxonomic Concepts for Expanding Knowledge
using Linked Open Data”. S4BioDiv2013, ESWC CEUR-WS vol 979. (2013)
▪ R. Chawuthai, H. Takeda, “rSim: Simplifying an RDF Graph at the Visualization Tier for Non-Expert Users”. ISWC-P&D,
ISWC, CEUR-WS vol 1486. (2015)
3
Publications about Semantic Web
Agenda
▪ Introduction
▪ RDF Graph
▪ RDF Schema
▪ Upper Ontology
▪ Designing Ontology
▪ Reasoning
▪ Query
▪ LOD
Introduction
5
6
References
Foundations of Semantic Web Technologies
by Pascal Hitzler , Markus Krötzsch , Sebastian Rudolph
http://www.semantic-web-book.org/page/
Foundations_of_Semantic_Web_Technologies
Linked Data: Evolving the Web into
a Global Data Space
By Tom Heath , Christian Bizer
http://linkeddatabook.com
7
Acknowledgements
Prof. Vilas WUWONGSE Prof. Hideaki TAKEDA
8
Lessons from AI (Artificial Intelligence)
expert systems machine learning systems
We need DATA
We need Structured DATA
We need Meaningful & Structured DATA
We need Meaningful , Exchangeable & Structured DATA
AI Systems
Rule-Driven Data-Driven
9
Open Data
Open Data
Open Science
Open Access
Open Research
Data
Open
Government
Open
Government Data
10
Open Data
11
Open Data
▪Open research data refer to the data
underpinning scientific research results
that have no restrictions on their
access, enabling anyone to access
them through the internet.
12
What are open research data?
Source: European Commission
13
Benefits of Open Research Data
▪ TOPIC
14
Benefits of Open Research Data
15
UK
▪ USA: NSF DATA SHARING POLICY
16
USA
Investigators are expected to share with
other researchers the primary data,
samples, physical collections and other
supporting materials created or gathered
in the course of work under NSF grants.
17
Open Data
Source: Horizon 2020
18
Open Data
19
Linked Data
https://commons.wikimedia.org/wiki/
File:Linked-Open-Data-BVMC.png
20
Linked Data
http://sites.linkeddata.center/blog/archive/1-2-3linkedopendataarehere
▪ Linked Data is about using the Web to connect related data
that wasn't previously linked, or using the Web to lower the
barriers to linking data currently linked using other methods.
▪ More specifically, Wikipedia defines Linked Data as "a term
used to describe a recommended best practice for
exposing, sharing, and connecting pieces of data,
information, and knowledge on the Semantic Web using
URIs and RDF.“
▪ http://linkeddata.org/
21
Linked Open Data
▪ Linked Open Data (LOD) is one practice approach of
Sematic Web.
▪ One significant ability is to integrate open data from different
schemas through the Internet.
▪ A graph is a data structure that is used in LOD.
▪ The reasoning on graph data together with schemas and
ontologies can improve the connection and accessibility of
data.
▪ Thus, we would like to provide background knowledge of
RDF graph, RDF Schema, ontology, reasoning, query, and
LOD cloud.
22
Introduction
RDF Graph
23
▪ Resource Description Framework (RDF)
▪ Graph data model in LOD is presented by a direct graph.
Nodes can be either named resources or literals, while links
are named properties. Every resource and property is
written using a Uniform Resource Identifier (URI), and the
structure of graph is modeled by Resource Description
Framework (RDF)
24
RDF
<URI> <URI>
<URI>
▪ Uniform Resource Identifier (URI)
▪ Every resource and property must be identified. In the RDF
model, the URI is used to be the identifier of resources and
properties.
▪ For example,
▪ are resources describing the terms “Sokendai”, “Rathachai”,
and “studies at” respectively. URIs are used to identified real-
world objects and abstract concepts.
25
URI
http://www.example.org/universities/Sokendai
http://www.example.org/students#Rathachai
http://www.example.org/terms#studiesAt
▪ LOD recommended that the URI should be HTTP URI, and
clients can access each URI using the HTTP protocol and
then get a returned document according to requested
format.
▪ RDF allows having short-hand writing, for example if a prefix
is defined as
▪ The former URIs can be shortened to be
unv:Sokendai, std:Rathachai, and :studiesAt.
26
Prefix
@prefix unv: <http://www.example.org/universities/> .
@prefix std: <http://www.example.org/students#> .
@prefix : <http://www.example.org/terms#> .
▪ Literals are texts that are typed and untyped. The untyped
literal can be any string such as “Rathachai Chawuthai”,
“December 1986”, “18.12”, and “+8180-7999-1818”.
▪ A string can be ended with a language tag in order to inform
the language of a text. In addition, the typed literal contain a
property value together with a URI of datatype.
▪ For example
•"Linked Open Data"@en presents that this string is in English.
•"555"^^xsd:integer presents an integer of 555.
•"1986-12-18"^^xsd:date presents a date of Dec 18th, 1986.
27
Literal
• Triple is a binary relation between two entities, and it is the
fundamental unit of an RDF graph. It includes the sequence
of a subject, a predicate, and an object. Subjects and
predicates are resources represented by URIs, but objects
can be either resources or literals.
• The formal representation of triple is  s,p,o  where s is a
subject, p is a predicate or a property, and o is an object. In
the graph diagram, the URI of a resource is commonly
written inside an eclipse, a literal is presented by a quoted
text inside a rectangle, and an arrows with the URI of
predicate are drawn from a subject to an object.
28
Triple
a) The resource std:Rathachai is a subject, the :studiesAt is a
predicate, and the unv:Sokendai is an object; and humans can
simply interpret that Rathachai studies at Sokendai.
b) The resource std:Rathachai is a subject, the foaf:name is a
predicate, and the “Rathachai Chawuthai” is an object literal,
and humans can simply interpret that Rathachai’s name is
“Rathachai Chawuthai”.
29
Triple
std:Rathachai unv:Sokendai
:studiesAt
std:Rathachai
foaf:name “Rathachai
Chawuthai”
(a)
(b)
30
RDF Syntaxes and Dialects
Kukrit Promoj
dc:creatorhttp://www.nlt.go.th/novel/
Four-Reins
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description rdf:about="http://www.nlt.go.th/novel/Four-Reins">
<dc:creator>Kukrit Pramoj</dc:creator>
</rdf:Description>
</rdf:RDF>
RDF/XML
@prefix dc: <http://purl.org/dc/elements/1.1/> .
<http://www.nlt.go.th/novel/Four-Reins> dc:creator “Kukrit Pramote" .
RDF/Turtle
<http://www.nlt.go.th/novel/Four-Reins>
<http://purl.org/dc/elements/1.1/creator> “Kukrit Pramoj" .
N-Triples
▪ A triple can be expressed by several formats such as Turtle,
XML, JSON-LD, and N-Triples, etc. In this thesis, we
commonly use the Turtle (or RDF/Turtle) because it is
convenient to read and write by humans.
▪ The Fig (a) can be expressed in Turtle format by
31
RDF Expression
<http://www.example.org/students#Rathachai>
<http://www.example.org/terms/studiesAt>
<http://www.example.org/universities/Sokendai> .
std:Rathachai unv:Sokendai
:studiesAt
std:Rathachai
foaf:name “Rathachai
Chawuthai”
(a)
(b)
▪ Fig (a) can be shortened into
▪ Fig (b) can also be shorten into
32
Turtle
@prefix unv: <http://www.example.org/universities/> .
@prefix std: <http://www.example.org/students#> .
@prefix : <http://www.example.org/terms/> .
std:Rathachai :studiesAt unv:Sokendai .
@prefix unv: <http://www.example.org/universities/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
std:Rathachai foaf:name "Rathachai Chawuthai" .
33
RDF Graph
ex:Alice
ex:Cindy
foaf:name “Alice”
ex:Bob
foaf:knows
foaf:knows
foaf:currentProject
ex:ABC
▪ RDF graph that can be called as RDF model is a set
of triples. It can be written in Turtle, so triples can
be stated in curly brackets such as
{ :s1 :p1: o1 . :s2 :p2 :o2 . },
and the expression can be abbreviated as the
following list.
▪ It is noted that the declaration of prefixes is
sometime avoid in some expressions in order to
make it be simpler and easier for reading and
reduce text length.
34
RDF Graph
• If triples share the same subject and predicate, it can put
objects in an object list and separate them by comma (,).
• For example, a graph
{ :s1 :p1 :o1 . :s1 :p1 :o2 . }
can be abbreviated as
{ :s1 :p1 :o1 , :o2 . }.
35
RDF Graph
• If triples share the same subject, it can put predicates and
objects in a predicate list and separate them by semi-colon
(;).
• For example, a graph
{ :s1 :p1 :o1 . :s1 :p2 :o2 . }
can be abbreviated as
{ :s1 :p1 :o1 ; :p2 :o2 . }
36
RDF Graph
• If triples contain the chain of same blank node, it can put the
relative cause in square brackets.
• For example, a graph
{ ex:Ryu foaf:knows _:a1 . _:a1 foaf:name “Ken” . }
can be abbreviated as
{ ex:Ryu foaf:knows [ foaf:name “Ken”] . }
which can be read as Ryu knows someone whose name is “Ken”.
37
RDF Graph
38
RDF Graph
ex:Alice
ex:Cindy
foaf:name “Alice”
ex:Bob
foaf:knows
foaf:knows
foaf:currentProject
ex:ABC
ex:Alice foaf:name "Alice" .
ex:Alice foaf:knows ex:Bob .
ex:Alice foaf:knows ex:Cindy .
ex:Cindy foaf:currentProject ex:ABC .
39
RDF Graph
ex:Alice foaf:name "Alice" ;
foaf:knows ex:Bob , ex: Cindy .
ex:Cindy foaf:currentProject ex:ABC .
can be abbreviated as the following expression
ex:Alice foaf:name "Alice" .
ex:Alice foaf:knows ex:Bob .
ex:Alice foaf:knows ex:Cindy .
ex:Cindy foaf:currentProject ex:ABC .
40
RDF Graph
ex:Alice foaf:name "Alice" ;
foaf:knows ex:Bob , ex: Cindy .
ex:Cindy foaf:currentProject ex:ABC .
ex:Alice
ex:Cindy
foaf:name “Alice”
ex:Bob
foaf:knows
foaf:knows
foaf:currentProject
ex:ABC
▪ RDF
▪ https://www.w3.org/TR/rdf-primer/
▪ Tools
▪ Protégé
▪ https://protege.stanford.edu/
▪ OpenLink Virtuoso
▪ https://virtuoso.openlinksw.com/
▪ RDF4J
▪ http://rdf4j.org/
41
See Also …
RDF Schema
42
▪ Without interpretation, an RDF statement is just a string of
characters.
▪ Adding meaning to an RDF graph is a key feature of
Semantic Web, and this feature makes an RDF graph
become excellently machine-readable.
▪ Ontology is a formal, explicit specification of a shared
conceptualization.
43
The Interpretation on Ontology
44
RDF Stack
https://en.wikipedia.org/wiki/Semantic_Web_Stack
▪ Ontology is a formal, explicit specification of a shared
conceptualization.
▪ Formal refers to machine-readable; explicit specification
refers to concepts, properties, relations, constants,
taxonomies, and axioms; and shared conceptualization
refers to consensual knowledge of abstract model and real-
world objects.
▪ An RDF graph is also one part of ontology. With the higher
interpretation of RDF data with either RDF Schema or
ontologies, the graph is more expressive.
45
The Interpretation on Ontology
▪ RDFS provide basic entailments for interpreting ontologies. It
mainly includes the interpretation of classes, properties, the
hierarchies of classes, and the hierarchies of properties.
There are 13 RDFS deduction rules for RDFS-Entailment,
but we describe only rules that use in this thesis.
▪ It is noted that the statement  x, rdf:type, C  where x and C
are any URIs and they can be interpreted that the instance x
is a member of a class or a set C.
▪ In this section, the name of a class is recommended to begin
with an uppercase letter, while the name of either an
instance or a property begins with a lowercase letter.
46
RDF Schema (RDFS)
• rdfs2:
if  p, rdfs:domain, C  and  s, p, o  ,
then  s, rdf:type, C  .
• rdfs3:
if  p, rdfs:range, C  and  s, p, o  ,
then  o, rdf:type, C  .
47
Domain and Range
s o
p
• rdfs5:
if  p2, rdfs:subPropertyOf, p1 
and  p1, rdfs:subPropertyOf, p0  ,
then  p2, rdfs:subPropertyOf, p0  .
• rdfs7:
if  p1, rdfs:subPropertyOf, p0 
and  s, p1, o  ,
then  s, p0, o  .
48
Subproperties
s o
p1
p1
p0
p2
rdfs:sub
Property
Of
rdfs:sub
Property
Of
• rdfs9:
if  C1, rdfs:subClassOf, C0 
and  x, rdf:type, C1  ,
then  x, rdf:type, C0  .
• rdfs11:
if  C2, rdfs:subClassOf, C1 
and  C1, rdfs:subClassof, C0 ,
then  C2, rdfs:subClassOf, C0  .
49
Subclasses
x C1
rdf:type
C1
C0
C2
rdfs:sub
ClassOf
rdfs:sub
ClassOf
50
RDF Entailment
foaf:Person rdfs:subClassOf foaf:Agent .
foaf:homepage rdfs:subPropertyOf foaf:page ;
rdfs:range foaf:Document .
ex:dan rdf:type foaf:Person ;
foaf:homepage <http://dan.info> .
51
RDF Entailment
rdfs3:
if  p, rdfs:range, C  and  s, p, o  ,
then  o, rdf:type, C  .
foaf:Person rdfs:subClassOf foaf:Agent .
foaf:homepage rdfs:subPropertyOf foaf:page ;
rdfs:range foaf:Document .
ex:dan rdf:type foaf:Person ;
foaf:homepage <http://dan.info> .
<http://dan.info> rdf:type foaf:Document .
52
RDF Entailment
rdfs7:
if  p1, rdfs:subPropertyOf, p0  and  s, p1, o  ,
then  s, p0, o  .
foaf:Person rdfs:subClassOf foaf:Agent .
foaf:homepage rdfs:subPropertyOf foaf:page ;
rdfs:range foaf:Document .
ex:dan rdf:type foaf:Person ;
foaf:homepage <http://dan.info> .
ex:dan foaf:page <http://dan.info> .
53
RDF Entailment
rdfs9:
if  C1, rdfs:subClassOf, C0  and  x, rdf:type, C1  ,
then  x, rdf:type, C0  .
foaf:Person rdfs:subClassOf foaf:Agent .
foaf:homepage rdfs:subPropertyOf foaf:page ;
rdfs:range foaf:Document .
ex:dan rdf:type foaf:Person ;
foaf:homepage <http://dan.info> .
ex:dan rdf:type foaf:Agent .
Ontology
54
55
Ontology
https://www.slideshare.net/JurgenZiemer/financial-regulation-ontology-fro-tutorial-chapter-1-into
▪ OWL is a recommended standard for the modelling of
ontologies. It gives higher interpretation over RDF and RDFS,
so the representation of a knowledge graph becomes more
expressive. There are many features and details in OWL,
however, this review selects some features that are
commonly used in this thesis, for example equality and
property characteristics.
▪ It is firstly informed that every instance is belong to
owl:Thing.
56
Web Ontology Language (OWL)
same-as:
if  s1, owl:sameAs, s2  and  s1, p1, o1  ,
then  s2, p1, o1  .
if  o1, owl:sameAs, o2  and  s1, p1, o1  ,
then  s1, p1, o2  .
equivalence class:
if  C1, owl:equivalentClass, C2  and  x, rdf:type, C1  ,
then  x, rdf:type, C2  .
equivalence property:
if  p1, owl:equivalentProperty, p2  and  s1, p1, o1  ,
then  s1, p2, o1  .
57
Equality
transitive property:
if  p, rdf:type, owl:TransitiveProperty  ,
 x, p, y  , and  y, p, z  ,
then  x, p, z  .
58
Property Characteristics
x y
p
z
p
p
symmetric property:
if  p, rdf:type, owl:SymmetricProperty  and  x, p, y 
then  y, p, x  .
59
Property Characteristics
x y
p
p
inverse property:
if  p1, owl:inverseOf, p2  , and  x, p1, y 
then  y, p2, x  .
60
Property Characteristics
x y
p1
p2
61
OWL Reasoning
skos:broaderTransitive rdf:type owl:TransitiveProperty .
skos:broader owl:reverseOf skos:narrower .
ex:football owl:sameAs ex:soccer .
ex:football skos:broader ex:sport .
ex:dog skos:broaderTransitive ex:mammal .
ex:mamal skos:broaderTransitive ex:animal .
ex:soccer skos:broader ex:sport .
ex:sport skos:narrower ex:football .
ex:sport skos:narrower ex:soccer .
ex:dog skos:broaderTransitive ex:animal .
• DC-Term (DCMI metadata term), which is the extension of
Dublin Core Metadata, contains metadata for describing a
documents and their relationships. For example
• dct:isVersionOf is a property that identify the previous
version of a term.
• dct:source is a property that identify the reference.
• http://dublincore.org/documents/dcmi-terms/
62
DC-Term
• FOAF (Friend of a Friend) ontology provides vocabularies for
describing humans, organizations, and documents, and
relationships among them. For example
• foaf:Person is a class of persons, and it is the sub class
of foaf:Agent.
• foaf:knows is a symmetric property that identifies persons
knowing each other.
• foaf:depiction is a property that points to a picture that is
the instance of the class foaf:Image.
• http://xmlns.com/foaf/spec/
63
FOAF
• SKOS (Simple Knowledge Organization System) ontology
provides a model for expressing the basic structure and
content of concept schemes. For example
• skos:broader is a property that identifies the board
concept of a given concept.
• skos:broaderTransitive is a transitive property that
identifies the transitively board concept of a given
concept.
• skos:narrower is a property that identifies the narrow
concept of a given concept and it is the inverse property
of skos:broader.
• skos:narrowerTransitive is a property that identifies the
transitively narrow concept of a given concept and it is
the inverse property of skos:broaderTransitive.
• https://www.w3.org/TR/skos-primer/
64
SKOS
▪ RDFS
▪ https://www.w3.org/TR/rdf-schema/
▪ OWL
▪ https://www.w3.org/TR/2012/
REC-owl2-primer-20121211/
▪ List of Ontologies
▪ http://semanticweb.org/wiki/Ontology
65
See Also …
Designing
Ontology
66
67
Ontology
https://www.slideshare.net/JurgenZiemer/financial-regulation-ontology-fro-tutorial-chapter-1-into
▪ Open
Teacher
68
Application Profile
เพื่อการ
ติดต่อ
Teacher
Teacher Profile
Academic Work
CourseEvent
Award
for showing awards or
certificates received
by teachers
for describing some necessary
details of a teacher
for recording some
academic activities
participated by teachers
for introducing some
academic works
produced by teachers
for informing courses
taught by teachers
▪ Domain Model
69
Application Profile
Teacher
opt:TeacherProfile
Course
opt:Course
Academic Work
opt:AcademicWork
Event
opt:Event
Award
opt:Award
otp:course
LecturedBy
vivo:awardOr
HonorFor
dc:creator
event:agent
otp:
award
Received
▪ TOPIC
70
HEAD
metadata
from
Thailand’s
schools
DC
(http://purl.org/dc/elements/1.1/)
FOAF
(http://xmlns.com/foaf/0.1/)
VIVO
(http://vivoweb.org/ontology/core#)
BIBO
(http://purl.org/ontology/bibo/)
Event
(http://purl.org/NET/c4dm/event.owl#)
Timeline (TL)
(http://www.w3.org/2006/time#)
LOM
(http://ltsc.ieee.org/xsd/LOM)
.
Common
Application
Profile
▪ opt:TeacherProfile
71
Teacher Profile
Property URI Example Value
Identifier vivo:identifier “1976072189”
Preferred Title vivo:preferredTitle “Ajarn”
First name foaf:firstName “Prayut”
Last name foaf:lastName “Chawuthai”
Academic Standing vivo:hasTeacherRole otp:ExpertTeacher
Academic Degree otp:hasAcademicDegree otp:Bachelor
Email foaf:mbox “ajprayut@gmail.com”
Website foaf:homepage https://profile.com/prayut
Field of Expertise otp:expertIn otp:Art, otp:Math
Area lom:discipline otp:Art
▪ opt:Course
72
Course
Property URI Example Value
Course Code dc:identifier “ART-101
Course Name dc:title “Fundamentals of Art 1”
Lecturer otp:courseLecturedBy ex:Prayut
Begin Date tl:beginAtDateTime “2011-06-01T09:00:00Z”^^xsd:dateTime
End date tl:endAtDateTime “2011-09-30T10:00:00Z”^^xsd:dateTime
Learning Area lom:discipline otp:Art
Grade lom:educationLevel otp:Grade1
ex:Prayut rdf:type otp:TeacherProfile ;
vivo:identifier “1976072189” ;
foaf:firstName “Prayut” ;
vivo:hasTeacherRole otp:ExpertTeacher ;
lom:discipline otp:Art, otp:Math ;
otp:expertIn otp:WaterColor .
ex:art101 rdf:type otp:Course
dc:title “Fundamentals of Art 1” ;
dc:identifier “ART-101” ;
otp:courseLecturedBy ex:Prayut ;
lom:discipline otp:Art ;
lom:educationLevel otp:Grade1 .
73
Example
▪ List of Ontologies
▪ http://semanticweb.org/wiki/Ontology
▪ Open Teacher
▪ https://link.springer.com/chapter/
10.1007/978-3-319-12823-8_15
▪ Linked Taxonomic Knowledge
▪ https://content.iospress.com/
articles/semantic-web/sw192
▪ Protégé
▪ https://protege.stanford.edu/
74
See Also …
Reasoning
75
▪ RDFS and OWL provide necessary rules to entail an RDF
graph.
▪ In case some specific requirements beyond RDFS and OWL
are needed, developers can create some Semantic Web
rules.
▪ For creating own rules, the book of Semantic Web
programming recommended to use Apache Jena as a
reasoning engine that is a library of Java.
76
Semantic Web Reasoning
▪ For example, in case the condition “An uncle is a brother
of one’s father” is defined, it can be simply expressed that:
If  x, :hasFather, y  and  y, :hasBrother, z  ,
then  x, :hasUncle, z  .
This rule can be written in a dialog program as follows:
77
Semantic Web Rules
hasFather(?x, ?y) ∧ hasBrother(?y, ?z) → hasUncle(?x, ?z)
▪ Semantic Web Rule
▪ JENA Rule
78
JENA
[rule_identify_uncle:
(?x :hasFather ?y),
(?y :hasBrother ?z)
->(?x :hasUncle ?z)]
hasFather(?x, ?y) ∧ hasBrother(?y, ?z) → hasUncle(?x, ?z)
▪ RDF Data
▪ JENA Rule
▪ Result
79
HEAD
[rule_identify_uncle:
(?x :hasFather ?y),
(?y :hasBrother ?z)
->(?x :hasUncle ?z)]
ex:john :hasFather ex:smith .
ex:smith :hasBrother ex:adam .
ex:john :hasUncle ex:adam .
▪ Semantic Web Rules
▪ https://www.w3.org/Submission/SWRL/
▪ JENA
▪ https://jena.apache.org/
documentation/inference/
▪ Protégé
▪ https://protege.stanford.edu/
80
See Also …
Query
81
▪ SPARQL (SPARQL Protocol and RDF Query Language) is a
protocol and query language for querying RDF data. The
syntax includes prefixes, scheme or result, and condition.
82
SPARQL
https://blog.52north.org/2015/05/28/sparql-endpoint-and-interoperability-of-envirocar-data/sparql-11-graph-store/
▪ RDF Data
▪ SPARQL Statement
▪ Query Result
83
SPARQL: Select
ex:Movie rdfs:subClassOf ex:Entertainment .
ex:TVSeries rdfs:subClassOf ex:Entertainment .
ex:starwarsVII rdf:type ex:Movie ;
ex:starring ex:daisy, ex:adam .
ex:gameOfThrones rdf:type ex:TVSeries .
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ex: < http://www.example.org/ex-terms/>
SELECT ?ent WHERE { ?ent rdf:type ex:Entertainment .}
+-----------------------------------------------+
| ?ent |
+-----------------------------------------------+
| http://www.example.org/ex-terms/starwarsVII |
| http://www.example.org/ex-terms/gameOfThrones |
+-----------------------------------------------+
▪ RDF Data
▪ SPARQL Statement
▪ Query Result
84
SPARQL: Construct
ex:Movie rdfs:subClassOf ex:Entertainment .
ex:TVSeries rdfs:subClassOf ex:Entertainment .
ex:starwarsVII rdf:type ex:Movie ;
ex:starring ex:daisy, ex:adam .
ex:gameOfThrones rdf:type ex:TVSeries .
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ex: < http://www.example.org/ex-terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT { ?a foaf:knows ?b .}
WHERE { ?ent ex:starring ?a , ?b .}
<http://www.example.org/ex-terms/daisy>
<http://xmlns.com/foaf/0.1/knows>
<http://www.example.org/ex-terms/adam> .
▪ WikiPedia Inforbox → Ontology
85
DBpedia
https://www.researchgate.net/publication/321690179_Relative_Quality_and_Popularity_Evaluation_of_Multilingual_Wikipedia_Articles
▪ https://dbpedia.org/sparql
86
DBpedia SPARQL
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT * WHERE {?comp rdf:type ont:Company. }
▪ https://dbpedia.org/sparql
87
DBpedia SPARQL
▪ Begin your query with
▪ They can be copied from
▪ http://dbpedia.org/snorql/
88
Let’s try
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX : <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
PREFIX dbpedia: <http://dbpedia.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
89
Let’s try
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT?a WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a }
SELECT?a ?b WHERE {<http://dbpedia.org/resource/Apple_Inc.> ?a ?b }
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT * WHERE {?a rdf:type ont:Company. ?a ont:product :IPad }
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT * WHERE {?a ont:product ?b. ?b dbpedia2:weight ?c}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b ?c
WHERE {?a ont:product ?b. ?b dbpedia2:weight ?c. FILTER regex( ?c , "Wi-Fi model:")}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b ?c WHERE {?a ont:product ?b. OPTIONAL {?b dbpedia2:weight ?c.}. }
90
Let’s try
SELECT ?a ?b WHERE {?a foaf:name ?b}
SELECT ?a ?b ?c WHERE {?a foaf:name ?b. ?a rdfs:label ?c.}
SELECT ?a ?b ?c WHERE {?a foaf:name ?b; rdfs:label ?c.}
SELECT ?a ?b ?c WHERE {?a foaf:name ?b. ?b rdfs:label ?c.}
SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b.}
SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b. FILTER ( ?b > 30).}
SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b. FILTER ( ?b > 30). ?a
rdfs:comment ?c}
SELECT ?a ?b WHERE {?a foaf:name ?b}
91
Let’s try
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a
OPTIONAL {?a dbpedia2:memory ?b}}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a
OPTIONAL {?a dbpedia2:license ?c}}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a
.OPTIONAL {?a dbpedia2:memory ?b}. OPTIONAL {?a dbpedia2:license ?c}}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a
OPTIONAL {?a dbpedia2:license ?c}}
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a
.OPTIONAL {?a dbpedia2:memory ?b}. OPTIONAL {?a dbpedia2:license ?c}}
92
Let’s try
PREFIX ont: <http://dbpedia.org/ontology/>
SELECT ?a ?b
WHERE { <http://dbpedia.org/resource/Apple_Inc.> ont:product ?a. {?a
dbpedia2:memory ?b } }
PREFIX ont: <http://dbpedia.org/ontology/>
select * where { {{:Microsoft ont:foundationPerson ?a }
UNION {:Microsoft ont:industry ?a}}. OPTIONAL {?a ont:birthPlace ?c} }
SELECT ?src ?age
WHERE { GRAPH ?src {?x foaf:name "Bill Gates"@en. ?x dbpedia2:years ?age }}
CONSTRUCT {?x ?y ?z}
WHERE { GRAPH <http://dbpedia.org> {?x ?y ?z . ?x foaf:name "Bill Gates"@en }}
DESCRIBE ?x WHERE { GRAPH <http://dbpedia.org> {?x foaf:name "Bill Gates"@en }}
ASK {?x dbpedia2:name "iPad"@en }
▪ SPARQL
▪ https://www.w3.org/TR/rdf-sparql-query/
▪ DBpedia
▪ https://wiki.dbpedia.org/
▪ DBpedia SPARQL
▪ https://dbpedia.org/sparql
▪ Dbpedia SNORQL
▪ http://dbpedia.org/snorql/
93
See Also …
LOD
Linked Open Data
94
▪ Linked Data is about using the Web to connect related data
that wasn't previously linked, or using the Web to lower the
barriers to linking data currently linked using other methods.
▪ More specifically, Wikipedia defines Linked Data as "a term
used to describe a recommended best practice for
exposing, sharing, and connecting pieces of data,
information, and knowledge on the Semantic Web using
URIs and RDF.“
▪ http://linkeddata.org/
95
Linked Open Data
96
5-star Data
Open License
Reuseable
Open Format
URI’s
Linked Data
e.g. Online PDF
e.g. Excel
e.g. CSV
RDF files
Ontologies
97
Triple
ex:Alice
ex:Cindy
foaf:name “Alice”
ex:Bob
foaf:knows
foaf:knows
foaf:currentProject
ex:ABC
98
RDF Graph
ex:Alice
ex:Cindy
foaf:name “Alice”
ex:Bob
foaf:knows
foaf:knows
foaf:currentProject
ex:ABC
99
LOD Cloud → 2007 https://lod-cloud.net/
100
LOD Cloud → 2008 https://lod-cloud.net/
101
LOD Cloud → 2009 https://lod-cloud.net/
102
LOD Cloud → 2010 https://lod-cloud.net/
103
LOD Cloud → 2014 https://lod-cloud.net/
104
LOD Cloud → 2018 https://lod-cloud.net/
105
Process of accessing to other SPARQL end-point
SPARQL
Endpoint
SPARQL
Endpoint
Linked OpenScholar Site
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX swrc: <http://swrc.ontoware.org/ontology#>
SELECT DISTINCT ?s ?title ?name ?homepage ?page ?year WHERE {
?s rdfs:label ?title.
FILTER regex(?title,"'.$kw.'",'i').
OPTIONAL { ?s dc:creator ?c_name.
?c_name rdfs:label ?name.
?s foaf:homepage ?homepage.
?s swrc:pages ?page.
?s dcterms:issued ?year. } }
order by desc(?year)
XMLHttpRequest
responseXML
106
Federated search
keyword
Get endpoint
Linked_Ope
nScholar db
Sparql
query
Sparql
query
Sparql
query
107
Linked Open Data
Kukrit Pramoj
dbpedia:Singburi
foaf:name
dbpedia:birthPlace
foaf:Person
rdf:type
nlt:kukrit
Prefixes
nlt: <http://www.nlt.go.th/person/>
rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
foaf: <http://xmlns.com/foaf/0.1/>
dbpedia: <http://dbpedia.org/resource/>
dp: <http://dbpedia.org/property/>
skos: <http://www.w3.org/2004/02/skos/core#Collection>
108
Linked Open Data
Kukrit Pramoj
dbpedia:Singburi
foaf:name
dbpedia:birthPlace
foaf:Person
rdf:type
nlt:kukrit
dbpedia:Cities_in_Thailand
232,766
dp:population
skos:subject
dbpedia:Singburi
dbpedia:Cities_in_Thailand
232,766
dp:population
skos:subject
dbpedia:Singburi
109
Linked Open Data
Kukrit Pramoj
dbpedia:Singburi
foaf:name
dbpedia:birthPlace
foaf:Person
rdf:type
nlt:kukrit
110
Your Data?
▪ DBpedia
▪ https://wiki.dbpedia.org/
▪ Linked Open Data
▪ http://linkeddata.org/
▪ LOD Cloud
▪ https://lod-cloud.net/
111
See Also …
1. Get and Analyze Requirements
2. Create an Application Profiles
3. Create a Data Model with reused Vocabularies from Well-Known
Ontologies
• if no, create your own URIs and link them to well-known URIs.
4. Create an RDF graph following the model
• Protégé (https://protege.stanford.edu/ )
5. Create Semantic Web Rules (if any)
• Protégé (https://protege.stanford.edu/ )
6. Publish your Ontology via a SPARQL end-point
• OpenLink Virtuoso (https://virtuoso.openlinksw.com/ )
7. Maintain your ontology
112
Creating an Ontology
113
Summary
ExternalizationSocialization
CombinationInternalization
Tacit
Knowledge
Tacit
Knowledge
Tacit
Knowledge
Tacit
Knowledge
Explicit
Knowledge
Explicit
Knowledge
Explicit
Knowledge
Explicit
Knowledge
S E
I C
RDF
Ontology
Reasoning
SPARQLLOD
rathachai.c@gmail.com
ANY QUESTIONS ARE WELCOME

Mais conteúdo relacionado

Mais procurados

Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Leon Wessels
 
Knowledge graphs on the Web
Knowledge graphs on the WebKnowledge graphs on the Web
Knowledge graphs on the WebArmin Haller
 
Property graph vs. RDF Triplestore comparison in 2020
Property graph vs. RDF Triplestore comparison in 2020Property graph vs. RDF Triplestore comparison in 2020
Property graph vs. RDF Triplestore comparison in 2020Ontotext
 
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talk
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talkDistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talk
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talkGezim Sejdiu
 
Digital Humanities and Linked Data
Digital Humanities and Linked DataDigital Humanities and Linked Data
Digital Humanities and Linked DataLeon Wessels
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011François Scharffe
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge queryStanley Wang
 
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
 
What_do_Knowledge_Graph_Embeddings_Learn.pdf
What_do_Knowledge_Graph_Embeddings_Learn.pdfWhat_do_Knowledge_Graph_Embeddings_Learn.pdf
What_do_Knowledge_Graph_Embeddings_Learn.pdfHeiko Paulheim
 
Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...తేజ దండిభట్ల
 
Hacktoberfest 2020 - Intro to Knowledge Graphs
Hacktoberfest 2020 - Intro to Knowledge GraphsHacktoberfest 2020 - Intro to Knowledge Graphs
Hacktoberfest 2020 - Intro to Knowledge GraphsArangoDB Database
 
RDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data FramesRDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data FramesKurt Cagle
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashupsgiurca
 
Rdf And Rdf Schema For Ontology Specification
Rdf And Rdf Schema For Ontology SpecificationRdf And Rdf Schema For Ontology Specification
Rdf And Rdf Schema For Ontology Specificationchenjennan
 
Resource description framework
Resource description frameworkResource description framework
Resource description frameworkhozifa1010
 
Resource description framework
Resource description frameworkResource description framework
Resource description frameworkStanley Wang
 

Mais procurados (20)

Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
Presentation of the INVENiT Expert Meeting on Monday 16 February 2015
 
Knowledge graphs on the Web
Knowledge graphs on the WebKnowledge graphs on the Web
Knowledge graphs on the Web
 
Property graph vs. RDF Triplestore comparison in 2020
Property graph vs. RDF Triplestore comparison in 2020Property graph vs. RDF Triplestore comparison in 2020
Property graph vs. RDF Triplestore comparison in 2020
 
RDF data model
RDF data modelRDF data model
RDF data model
 
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talk
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talkDistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talk
DistLODStats: Distributed Computation of RDF Dataset Statistics - ISWC 2018 talk
 
Digital Humanities and Linked Data
Digital Humanities and Linked DataDigital Humanities and Linked Data
Digital Humanities and Linked Data
 
20110728 datalift-rpi-troy
20110728 datalift-rpi-troy20110728 datalift-rpi-troy
20110728 datalift-rpi-troy
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge query
 
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
 
What_do_Knowledge_Graph_Embeddings_Learn.pdf
What_do_Knowledge_Graph_Embeddings_Learn.pdfWhat_do_Knowledge_Graph_Embeddings_Learn.pdf
What_do_Knowledge_Graph_Embeddings_Learn.pdf
 
Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...Achieving time effective federated information from scalable rdf data using s...
Achieving time effective federated information from scalable rdf data using s...
 
Hacktoberfest 2020 - Intro to Knowledge Graphs
Hacktoberfest 2020 - Intro to Knowledge GraphsHacktoberfest 2020 - Intro to Knowledge Graphs
Hacktoberfest 2020 - Intro to Knowledge Graphs
 
RDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data FramesRDF SHACL, Annotations, and Data Frames
RDF SHACL, Annotations, and Data Frames
 
Semantic Pipes and Semantic Mashups
Semantic Pipes and Semantic MashupsSemantic Pipes and Semantic Mashups
Semantic Pipes and Semantic Mashups
 
Rdf And Rdf Schema For Ontology Specification
Rdf And Rdf Schema For Ontology SpecificationRdf And Rdf Schema For Ontology Specification
Rdf And Rdf Schema For Ontology Specification
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Semantic web an overview and projects
Semantic web   an  overview and projectsSemantic web   an  overview and projects
Semantic web an overview and projects
 
RDF and Java
RDF and JavaRDF and Java
RDF and Java
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
 

Semelhante a Semantic Web Technology

Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked dataLaura Po
 
Linked Open Data: A simple how-to
Linked Open Data: A simple how-toLinked Open Data: A simple how-to
Linked Open Data: A simple how-tonvitucci
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebVictor de Boer
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph IntroductionSören Auer
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...Armin Haller
 
Metadata for digital humanities
Metadata for digital humanities Metadata for digital humanities
Metadata for digital humanities Getaneh Alemu
 
An Introduction to Linked Data and Microdata
An Introduction to Linked Data and MicrodataAn Introduction to Linked Data and Microdata
An Introduction to Linked Data and MicrodataDLFCLIR
 
Graph databases & data integration - the case of RDF
Graph databases & data integration - the case of RDFGraph databases & data integration - the case of RDF
Graph databases & data integration - the case of RDFDimitris Kontokostas
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for BeginnerMyungjin Lee
 
Graph databases & data integration v2
Graph databases & data integration v2Graph databases & data integration v2
Graph databases & data integration v2Dimitris Kontokostas
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgRichard Wallis
 
VALA Tech Camp 2017: Intro to Wikidata & SPARQL
VALA Tech Camp 2017: Intro to Wikidata & SPARQLVALA Tech Camp 2017: Intro to Wikidata & SPARQL
VALA Tech Camp 2017: Intro to Wikidata & SPARQLJane Frazier
 
Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryRuben Schalk
 
Introduction to Linked Data - Part 1
Introduction to Linked Data - Part 1Introduction to Linked Data - Part 1
Introduction to Linked Data - Part 1Itza Carbajal
 
Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)robin fay
 

Semelhante a Semantic Web Technology (20)

Introduction to linked data
Introduction to linked dataIntroduction to linked data
Introduction to linked data
 
Linked Open Data: A simple how-to
Linked Open Data: A simple how-toLinked Open Data: A simple how-to
Linked Open Data: A simple how-to
 
One day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic WebOne day workshop Linked Data and Semantic Web
One day workshop Linked Data and Semantic Web
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph Introduction
 
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
What Are Links in Linked Open Data? A Characterization and Evaluation of Link...
 
Metadata for digital humanities
Metadata for digital humanities Metadata for digital humanities
Metadata for digital humanities
 
An Introduction to Linked Data and Microdata
An Introduction to Linked Data and MicrodataAn Introduction to Linked Data and Microdata
An Introduction to Linked Data and Microdata
 
Graph databases & data integration - the case of RDF
Graph databases & data integration - the case of RDFGraph databases & data integration - the case of RDF
Graph databases & data integration - the case of RDF
 
Linking library data
Linking library dataLinking library data
Linking library data
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for Beginner
 
Graph databases & data integration v2
Graph databases & data integration v2Graph databases & data integration v2
Graph databases & data integration v2
 
CSV-X
CSV-XCSV-X
CSV-X
 
WorldCat, Works, and Schema.org
WorldCat, Works, and Schema.orgWorldCat, Works, and Schema.org
WorldCat, Works, and Schema.org
 
VALA Tech Camp 2017: Intro to Wikidata & SPARQL
VALA Tech Camp 2017: Intro to Wikidata & SPARQLVALA Tech Camp 2017: Intro to Wikidata & SPARQL
VALA Tech Camp 2017: Intro to Wikidata & SPARQL
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
 
Linked Open Data
Linked Open DataLinked Open Data
Linked Open Data
 
Linked Open Data Utrecht University Library
Linked Open Data Utrecht University LibraryLinked Open Data Utrecht University Library
Linked Open Data Utrecht University Library
 
Introduction to Linked Data - Part 1
Introduction to Linked Data - Part 1Introduction to Linked Data - Part 1
Introduction to Linked Data - Part 1
 
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
 
Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)Linked data presentation for libraries (COMO)
Linked data presentation for libraries (COMO)
 

Último

CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 

Último (20)

CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 

Semantic Web Technology

  • 1. Rathachai CHAWUTHAI Semantic Web Technology Department of Computer Engineering, Faculty of Engineering King Mongkut's Institute of Technology Ladkrabang
  • 2. ▪ Now ▪ Lecturer at Computer Engineering ▪ King Mongkut's Institute of Technology Ladkrabang ▪ Education Background ▪ B.Eng. at KMITL ▪ M.Eng. at AIT ▪ Ph.D at SOKENDAI, Japan ▪ Work Experience ▪ Thomson Reuters Thailand (4 years) ▪ Punsarn Asia (1 years) ▪ NII, Japan (3 years) 2 Rathachai Chawuthai Rathachai rathachai rathachai.c
  • 3. Journal Papers and Book Chapters ▪ R. Chawuthai, H. Takeda, V. Wuwongse, U. Jinbo: “Presenting and Preserving the Change in Taxonomic Knowledge for Linked Data”. Semantic Web Journal (2016) ▪ R. Chawuthai, U. Jinbo, H. Takeda: “Linked Open Data Model for Taxonomic Information”. In a book titled “Application of Semantic Technology in Biodiversity Science”. IOS Press. (2018) Conference and Workshop Papers ▪ R. Chawuthai, U. Jinbo, H. Takeda: “Linked Open Data Model for Taxonomic Information”. In a book titled “Application of Semantic Technology in Biodiversity Science”. IOS Press. (2018) ▪ R. Chawuthai, H. Takeda: “RDF Graph Visualization by Interpreting Linked Data as Knowledge”. JIST, Springer. (2016) ▪ R. Chawuthai, H. Takeda, T. Hosoya: “Link Prediction in Linked Data of Interspecies Interactions Using Hybrid Recommendation Approach”. JIST:, Springer (2014) ▪ C. Nonthakarn, R. Chawuthai, V. Wuwongse: “An Application Profile for Linked Teacher Profiles and Teaching Resources”. ICADL, Springer. (2014) ▪ R. Chawuthai, V. Wuwongse, H. Takeda: “A Formal Approach to the Modelling of Digital Archives”. ICADL: 179-188, Springer. (2012) ▪ R. Chawuthai, H. Takeda, V. Wuwongse, U. Jinbo: “A Logical Model for Taxonomic Concepts for Expanding Knowledge using Linked Open Data”. S4BioDiv2013, ESWC CEUR-WS vol 979. (2013) ▪ R. Chawuthai, H. Takeda, “rSim: Simplifying an RDF Graph at the Visualization Tier for Non-Expert Users”. ISWC-P&D, ISWC, CEUR-WS vol 1486. (2015) 3 Publications about Semantic Web
  • 4. Agenda ▪ Introduction ▪ RDF Graph ▪ RDF Schema ▪ Upper Ontology ▪ Designing Ontology ▪ Reasoning ▪ Query ▪ LOD
  • 6. 6 References Foundations of Semantic Web Technologies by Pascal Hitzler , Markus Krötzsch , Sebastian Rudolph http://www.semantic-web-book.org/page/ Foundations_of_Semantic_Web_Technologies Linked Data: Evolving the Web into a Global Data Space By Tom Heath , Christian Bizer http://linkeddatabook.com
  • 8. 8 Lessons from AI (Artificial Intelligence) expert systems machine learning systems We need DATA We need Structured DATA We need Meaningful & Structured DATA We need Meaningful , Exchangeable & Structured DATA AI Systems Rule-Driven Data-Driven
  • 9. 9 Open Data Open Data Open Science Open Access Open Research Data Open Government Open Government Data
  • 12. ▪Open research data refer to the data underpinning scientific research results that have no restrictions on their access, enabling anyone to access them through the internet. 12 What are open research data? Source: European Commission
  • 13. 13 Benefits of Open Research Data
  • 14. ▪ TOPIC 14 Benefits of Open Research Data
  • 15. 15 UK
  • 16. ▪ USA: NSF DATA SHARING POLICY 16 USA Investigators are expected to share with other researchers the primary data, samples, physical collections and other supporting materials created or gathered in the course of work under NSF grants.
  • 21. ▪ Linked Data is about using the Web to connect related data that wasn't previously linked, or using the Web to lower the barriers to linking data currently linked using other methods. ▪ More specifically, Wikipedia defines Linked Data as "a term used to describe a recommended best practice for exposing, sharing, and connecting pieces of data, information, and knowledge on the Semantic Web using URIs and RDF.“ ▪ http://linkeddata.org/ 21 Linked Open Data
  • 22. ▪ Linked Open Data (LOD) is one practice approach of Sematic Web. ▪ One significant ability is to integrate open data from different schemas through the Internet. ▪ A graph is a data structure that is used in LOD. ▪ The reasoning on graph data together with schemas and ontologies can improve the connection and accessibility of data. ▪ Thus, we would like to provide background knowledge of RDF graph, RDF Schema, ontology, reasoning, query, and LOD cloud. 22 Introduction
  • 24. ▪ Resource Description Framework (RDF) ▪ Graph data model in LOD is presented by a direct graph. Nodes can be either named resources or literals, while links are named properties. Every resource and property is written using a Uniform Resource Identifier (URI), and the structure of graph is modeled by Resource Description Framework (RDF) 24 RDF <URI> <URI> <URI>
  • 25. ▪ Uniform Resource Identifier (URI) ▪ Every resource and property must be identified. In the RDF model, the URI is used to be the identifier of resources and properties. ▪ For example, ▪ are resources describing the terms “Sokendai”, “Rathachai”, and “studies at” respectively. URIs are used to identified real- world objects and abstract concepts. 25 URI http://www.example.org/universities/Sokendai http://www.example.org/students#Rathachai http://www.example.org/terms#studiesAt
  • 26. ▪ LOD recommended that the URI should be HTTP URI, and clients can access each URI using the HTTP protocol and then get a returned document according to requested format. ▪ RDF allows having short-hand writing, for example if a prefix is defined as ▪ The former URIs can be shortened to be unv:Sokendai, std:Rathachai, and :studiesAt. 26 Prefix @prefix unv: <http://www.example.org/universities/> . @prefix std: <http://www.example.org/students#> . @prefix : <http://www.example.org/terms#> .
  • 27. ▪ Literals are texts that are typed and untyped. The untyped literal can be any string such as “Rathachai Chawuthai”, “December 1986”, “18.12”, and “+8180-7999-1818”. ▪ A string can be ended with a language tag in order to inform the language of a text. In addition, the typed literal contain a property value together with a URI of datatype. ▪ For example •"Linked Open Data"@en presents that this string is in English. •"555"^^xsd:integer presents an integer of 555. •"1986-12-18"^^xsd:date presents a date of Dec 18th, 1986. 27 Literal
  • 28. • Triple is a binary relation between two entities, and it is the fundamental unit of an RDF graph. It includes the sequence of a subject, a predicate, and an object. Subjects and predicates are resources represented by URIs, but objects can be either resources or literals. • The formal representation of triple is  s,p,o  where s is a subject, p is a predicate or a property, and o is an object. In the graph diagram, the URI of a resource is commonly written inside an eclipse, a literal is presented by a quoted text inside a rectangle, and an arrows with the URI of predicate are drawn from a subject to an object. 28 Triple
  • 29. a) The resource std:Rathachai is a subject, the :studiesAt is a predicate, and the unv:Sokendai is an object; and humans can simply interpret that Rathachai studies at Sokendai. b) The resource std:Rathachai is a subject, the foaf:name is a predicate, and the “Rathachai Chawuthai” is an object literal, and humans can simply interpret that Rathachai’s name is “Rathachai Chawuthai”. 29 Triple std:Rathachai unv:Sokendai :studiesAt std:Rathachai foaf:name “Rathachai Chawuthai” (a) (b)
  • 30. 30 RDF Syntaxes and Dialects Kukrit Promoj dc:creatorhttp://www.nlt.go.th/novel/ Four-Reins <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> <rdf:Description rdf:about="http://www.nlt.go.th/novel/Four-Reins"> <dc:creator>Kukrit Pramoj</dc:creator> </rdf:Description> </rdf:RDF> RDF/XML @prefix dc: <http://purl.org/dc/elements/1.1/> . <http://www.nlt.go.th/novel/Four-Reins> dc:creator “Kukrit Pramote" . RDF/Turtle <http://www.nlt.go.th/novel/Four-Reins> <http://purl.org/dc/elements/1.1/creator> “Kukrit Pramoj" . N-Triples
  • 31. ▪ A triple can be expressed by several formats such as Turtle, XML, JSON-LD, and N-Triples, etc. In this thesis, we commonly use the Turtle (or RDF/Turtle) because it is convenient to read and write by humans. ▪ The Fig (a) can be expressed in Turtle format by 31 RDF Expression <http://www.example.org/students#Rathachai> <http://www.example.org/terms/studiesAt> <http://www.example.org/universities/Sokendai> . std:Rathachai unv:Sokendai :studiesAt std:Rathachai foaf:name “Rathachai Chawuthai” (a) (b)
  • 32. ▪ Fig (a) can be shortened into ▪ Fig (b) can also be shorten into 32 Turtle @prefix unv: <http://www.example.org/universities/> . @prefix std: <http://www.example.org/students#> . @prefix : <http://www.example.org/terms/> . std:Rathachai :studiesAt unv:Sokendai . @prefix unv: <http://www.example.org/universities/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . std:Rathachai foaf:name "Rathachai Chawuthai" .
  • 34. ▪ RDF graph that can be called as RDF model is a set of triples. It can be written in Turtle, so triples can be stated in curly brackets such as { :s1 :p1: o1 . :s2 :p2 :o2 . }, and the expression can be abbreviated as the following list. ▪ It is noted that the declaration of prefixes is sometime avoid in some expressions in order to make it be simpler and easier for reading and reduce text length. 34 RDF Graph
  • 35. • If triples share the same subject and predicate, it can put objects in an object list and separate them by comma (,). • For example, a graph { :s1 :p1 :o1 . :s1 :p1 :o2 . } can be abbreviated as { :s1 :p1 :o1 , :o2 . }. 35 RDF Graph
  • 36. • If triples share the same subject, it can put predicates and objects in a predicate list and separate them by semi-colon (;). • For example, a graph { :s1 :p1 :o1 . :s1 :p2 :o2 . } can be abbreviated as { :s1 :p1 :o1 ; :p2 :o2 . } 36 RDF Graph
  • 37. • If triples contain the chain of same blank node, it can put the relative cause in square brackets. • For example, a graph { ex:Ryu foaf:knows _:a1 . _:a1 foaf:name “Ken” . } can be abbreviated as { ex:Ryu foaf:knows [ foaf:name “Ken”] . } which can be read as Ryu knows someone whose name is “Ken”. 37 RDF Graph
  • 38. 38 RDF Graph ex:Alice ex:Cindy foaf:name “Alice” ex:Bob foaf:knows foaf:knows foaf:currentProject ex:ABC ex:Alice foaf:name "Alice" . ex:Alice foaf:knows ex:Bob . ex:Alice foaf:knows ex:Cindy . ex:Cindy foaf:currentProject ex:ABC .
  • 39. 39 RDF Graph ex:Alice foaf:name "Alice" ; foaf:knows ex:Bob , ex: Cindy . ex:Cindy foaf:currentProject ex:ABC . can be abbreviated as the following expression ex:Alice foaf:name "Alice" . ex:Alice foaf:knows ex:Bob . ex:Alice foaf:knows ex:Cindy . ex:Cindy foaf:currentProject ex:ABC .
  • 40. 40 RDF Graph ex:Alice foaf:name "Alice" ; foaf:knows ex:Bob , ex: Cindy . ex:Cindy foaf:currentProject ex:ABC . ex:Alice ex:Cindy foaf:name “Alice” ex:Bob foaf:knows foaf:knows foaf:currentProject ex:ABC
  • 41. ▪ RDF ▪ https://www.w3.org/TR/rdf-primer/ ▪ Tools ▪ Protégé ▪ https://protege.stanford.edu/ ▪ OpenLink Virtuoso ▪ https://virtuoso.openlinksw.com/ ▪ RDF4J ▪ http://rdf4j.org/ 41 See Also …
  • 43. ▪ Without interpretation, an RDF statement is just a string of characters. ▪ Adding meaning to an RDF graph is a key feature of Semantic Web, and this feature makes an RDF graph become excellently machine-readable. ▪ Ontology is a formal, explicit specification of a shared conceptualization. 43 The Interpretation on Ontology
  • 45. ▪ Ontology is a formal, explicit specification of a shared conceptualization. ▪ Formal refers to machine-readable; explicit specification refers to concepts, properties, relations, constants, taxonomies, and axioms; and shared conceptualization refers to consensual knowledge of abstract model and real- world objects. ▪ An RDF graph is also one part of ontology. With the higher interpretation of RDF data with either RDF Schema or ontologies, the graph is more expressive. 45 The Interpretation on Ontology
  • 46. ▪ RDFS provide basic entailments for interpreting ontologies. It mainly includes the interpretation of classes, properties, the hierarchies of classes, and the hierarchies of properties. There are 13 RDFS deduction rules for RDFS-Entailment, but we describe only rules that use in this thesis. ▪ It is noted that the statement  x, rdf:type, C  where x and C are any URIs and they can be interpreted that the instance x is a member of a class or a set C. ▪ In this section, the name of a class is recommended to begin with an uppercase letter, while the name of either an instance or a property begins with a lowercase letter. 46 RDF Schema (RDFS)
  • 47. • rdfs2: if  p, rdfs:domain, C  and  s, p, o  , then  s, rdf:type, C  . • rdfs3: if  p, rdfs:range, C  and  s, p, o  , then  o, rdf:type, C  . 47 Domain and Range s o p
  • 48. • rdfs5: if  p2, rdfs:subPropertyOf, p1  and  p1, rdfs:subPropertyOf, p0  , then  p2, rdfs:subPropertyOf, p0  . • rdfs7: if  p1, rdfs:subPropertyOf, p0  and  s, p1, o  , then  s, p0, o  . 48 Subproperties s o p1 p1 p0 p2 rdfs:sub Property Of rdfs:sub Property Of
  • 49. • rdfs9: if  C1, rdfs:subClassOf, C0  and  x, rdf:type, C1  , then  x, rdf:type, C0  . • rdfs11: if  C2, rdfs:subClassOf, C1  and  C1, rdfs:subClassof, C0 , then  C2, rdfs:subClassOf, C0  . 49 Subclasses x C1 rdf:type C1 C0 C2 rdfs:sub ClassOf rdfs:sub ClassOf
  • 50. 50 RDF Entailment foaf:Person rdfs:subClassOf foaf:Agent . foaf:homepage rdfs:subPropertyOf foaf:page ; rdfs:range foaf:Document . ex:dan rdf:type foaf:Person ; foaf:homepage <http://dan.info> .
  • 51. 51 RDF Entailment rdfs3: if  p, rdfs:range, C  and  s, p, o  , then  o, rdf:type, C  . foaf:Person rdfs:subClassOf foaf:Agent . foaf:homepage rdfs:subPropertyOf foaf:page ; rdfs:range foaf:Document . ex:dan rdf:type foaf:Person ; foaf:homepage <http://dan.info> . <http://dan.info> rdf:type foaf:Document .
  • 52. 52 RDF Entailment rdfs7: if  p1, rdfs:subPropertyOf, p0  and  s, p1, o  , then  s, p0, o  . foaf:Person rdfs:subClassOf foaf:Agent . foaf:homepage rdfs:subPropertyOf foaf:page ; rdfs:range foaf:Document . ex:dan rdf:type foaf:Person ; foaf:homepage <http://dan.info> . ex:dan foaf:page <http://dan.info> .
  • 53. 53 RDF Entailment rdfs9: if  C1, rdfs:subClassOf, C0  and  x, rdf:type, C1  , then  x, rdf:type, C0  . foaf:Person rdfs:subClassOf foaf:Agent . foaf:homepage rdfs:subPropertyOf foaf:page ; rdfs:range foaf:Document . ex:dan rdf:type foaf:Person ; foaf:homepage <http://dan.info> . ex:dan rdf:type foaf:Agent .
  • 56. ▪ OWL is a recommended standard for the modelling of ontologies. It gives higher interpretation over RDF and RDFS, so the representation of a knowledge graph becomes more expressive. There are many features and details in OWL, however, this review selects some features that are commonly used in this thesis, for example equality and property characteristics. ▪ It is firstly informed that every instance is belong to owl:Thing. 56 Web Ontology Language (OWL)
  • 57. same-as: if  s1, owl:sameAs, s2  and  s1, p1, o1  , then  s2, p1, o1  . if  o1, owl:sameAs, o2  and  s1, p1, o1  , then  s1, p1, o2  . equivalence class: if  C1, owl:equivalentClass, C2  and  x, rdf:type, C1  , then  x, rdf:type, C2  . equivalence property: if  p1, owl:equivalentProperty, p2  and  s1, p1, o1  , then  s1, p2, o1  . 57 Equality
  • 58. transitive property: if  p, rdf:type, owl:TransitiveProperty  ,  x, p, y  , and  y, p, z  , then  x, p, z  . 58 Property Characteristics x y p z p p
  • 59. symmetric property: if  p, rdf:type, owl:SymmetricProperty  and  x, p, y  then  y, p, x  . 59 Property Characteristics x y p p
  • 60. inverse property: if  p1, owl:inverseOf, p2  , and  x, p1, y  then  y, p2, x  . 60 Property Characteristics x y p1 p2
  • 61. 61 OWL Reasoning skos:broaderTransitive rdf:type owl:TransitiveProperty . skos:broader owl:reverseOf skos:narrower . ex:football owl:sameAs ex:soccer . ex:football skos:broader ex:sport . ex:dog skos:broaderTransitive ex:mammal . ex:mamal skos:broaderTransitive ex:animal . ex:soccer skos:broader ex:sport . ex:sport skos:narrower ex:football . ex:sport skos:narrower ex:soccer . ex:dog skos:broaderTransitive ex:animal .
  • 62. • DC-Term (DCMI metadata term), which is the extension of Dublin Core Metadata, contains metadata for describing a documents and their relationships. For example • dct:isVersionOf is a property that identify the previous version of a term. • dct:source is a property that identify the reference. • http://dublincore.org/documents/dcmi-terms/ 62 DC-Term
  • 63. • FOAF (Friend of a Friend) ontology provides vocabularies for describing humans, organizations, and documents, and relationships among them. For example • foaf:Person is a class of persons, and it is the sub class of foaf:Agent. • foaf:knows is a symmetric property that identifies persons knowing each other. • foaf:depiction is a property that points to a picture that is the instance of the class foaf:Image. • http://xmlns.com/foaf/spec/ 63 FOAF
  • 64. • SKOS (Simple Knowledge Organization System) ontology provides a model for expressing the basic structure and content of concept schemes. For example • skos:broader is a property that identifies the board concept of a given concept. • skos:broaderTransitive is a transitive property that identifies the transitively board concept of a given concept. • skos:narrower is a property that identifies the narrow concept of a given concept and it is the inverse property of skos:broader. • skos:narrowerTransitive is a property that identifies the transitively narrow concept of a given concept and it is the inverse property of skos:broaderTransitive. • https://www.w3.org/TR/skos-primer/ 64 SKOS
  • 65. ▪ RDFS ▪ https://www.w3.org/TR/rdf-schema/ ▪ OWL ▪ https://www.w3.org/TR/2012/ REC-owl2-primer-20121211/ ▪ List of Ontologies ▪ http://semanticweb.org/wiki/Ontology 65 See Also …
  • 68. ▪ Open Teacher 68 Application Profile เพื่อการ ติดต่อ Teacher Teacher Profile Academic Work CourseEvent Award for showing awards or certificates received by teachers for describing some necessary details of a teacher for recording some academic activities participated by teachers for introducing some academic works produced by teachers for informing courses taught by teachers
  • 69. ▪ Domain Model 69 Application Profile Teacher opt:TeacherProfile Course opt:Course Academic Work opt:AcademicWork Event opt:Event Award opt:Award otp:course LecturedBy vivo:awardOr HonorFor dc:creator event:agent otp: award Received
  • 71. ▪ opt:TeacherProfile 71 Teacher Profile Property URI Example Value Identifier vivo:identifier “1976072189” Preferred Title vivo:preferredTitle “Ajarn” First name foaf:firstName “Prayut” Last name foaf:lastName “Chawuthai” Academic Standing vivo:hasTeacherRole otp:ExpertTeacher Academic Degree otp:hasAcademicDegree otp:Bachelor Email foaf:mbox “ajprayut@gmail.com” Website foaf:homepage https://profile.com/prayut Field of Expertise otp:expertIn otp:Art, otp:Math Area lom:discipline otp:Art
  • 72. ▪ opt:Course 72 Course Property URI Example Value Course Code dc:identifier “ART-101 Course Name dc:title “Fundamentals of Art 1” Lecturer otp:courseLecturedBy ex:Prayut Begin Date tl:beginAtDateTime “2011-06-01T09:00:00Z”^^xsd:dateTime End date tl:endAtDateTime “2011-09-30T10:00:00Z”^^xsd:dateTime Learning Area lom:discipline otp:Art Grade lom:educationLevel otp:Grade1
  • 73. ex:Prayut rdf:type otp:TeacherProfile ; vivo:identifier “1976072189” ; foaf:firstName “Prayut” ; vivo:hasTeacherRole otp:ExpertTeacher ; lom:discipline otp:Art, otp:Math ; otp:expertIn otp:WaterColor . ex:art101 rdf:type otp:Course dc:title “Fundamentals of Art 1” ; dc:identifier “ART-101” ; otp:courseLecturedBy ex:Prayut ; lom:discipline otp:Art ; lom:educationLevel otp:Grade1 . 73 Example
  • 74. ▪ List of Ontologies ▪ http://semanticweb.org/wiki/Ontology ▪ Open Teacher ▪ https://link.springer.com/chapter/ 10.1007/978-3-319-12823-8_15 ▪ Linked Taxonomic Knowledge ▪ https://content.iospress.com/ articles/semantic-web/sw192 ▪ Protégé ▪ https://protege.stanford.edu/ 74 See Also …
  • 76. ▪ RDFS and OWL provide necessary rules to entail an RDF graph. ▪ In case some specific requirements beyond RDFS and OWL are needed, developers can create some Semantic Web rules. ▪ For creating own rules, the book of Semantic Web programming recommended to use Apache Jena as a reasoning engine that is a library of Java. 76 Semantic Web Reasoning
  • 77. ▪ For example, in case the condition “An uncle is a brother of one’s father” is defined, it can be simply expressed that: If  x, :hasFather, y  and  y, :hasBrother, z  , then  x, :hasUncle, z  . This rule can be written in a dialog program as follows: 77 Semantic Web Rules hasFather(?x, ?y) ∧ hasBrother(?y, ?z) → hasUncle(?x, ?z)
  • 78. ▪ Semantic Web Rule ▪ JENA Rule 78 JENA [rule_identify_uncle: (?x :hasFather ?y), (?y :hasBrother ?z) ->(?x :hasUncle ?z)] hasFather(?x, ?y) ∧ hasBrother(?y, ?z) → hasUncle(?x, ?z)
  • 79. ▪ RDF Data ▪ JENA Rule ▪ Result 79 HEAD [rule_identify_uncle: (?x :hasFather ?y), (?y :hasBrother ?z) ->(?x :hasUncle ?z)] ex:john :hasFather ex:smith . ex:smith :hasBrother ex:adam . ex:john :hasUncle ex:adam .
  • 80. ▪ Semantic Web Rules ▪ https://www.w3.org/Submission/SWRL/ ▪ JENA ▪ https://jena.apache.org/ documentation/inference/ ▪ Protégé ▪ https://protege.stanford.edu/ 80 See Also …
  • 82. ▪ SPARQL (SPARQL Protocol and RDF Query Language) is a protocol and query language for querying RDF data. The syntax includes prefixes, scheme or result, and condition. 82 SPARQL https://blog.52north.org/2015/05/28/sparql-endpoint-and-interoperability-of-envirocar-data/sparql-11-graph-store/
  • 83. ▪ RDF Data ▪ SPARQL Statement ▪ Query Result 83 SPARQL: Select ex:Movie rdfs:subClassOf ex:Entertainment . ex:TVSeries rdfs:subClassOf ex:Entertainment . ex:starwarsVII rdf:type ex:Movie ; ex:starring ex:daisy, ex:adam . ex:gameOfThrones rdf:type ex:TVSeries . PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX ex: < http://www.example.org/ex-terms/> SELECT ?ent WHERE { ?ent rdf:type ex:Entertainment .} +-----------------------------------------------+ | ?ent | +-----------------------------------------------+ | http://www.example.org/ex-terms/starwarsVII | | http://www.example.org/ex-terms/gameOfThrones | +-----------------------------------------------+
  • 84. ▪ RDF Data ▪ SPARQL Statement ▪ Query Result 84 SPARQL: Construct ex:Movie rdfs:subClassOf ex:Entertainment . ex:TVSeries rdfs:subClassOf ex:Entertainment . ex:starwarsVII rdf:type ex:Movie ; ex:starring ex:daisy, ex:adam . ex:gameOfThrones rdf:type ex:TVSeries . PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX ex: < http://www.example.org/ex-terms/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> CONSTRUCT { ?a foaf:knows ?b .} WHERE { ?ent ex:starring ?a , ?b .} <http://www.example.org/ex-terms/daisy> <http://xmlns.com/foaf/0.1/knows> <http://www.example.org/ex-terms/adam> .
  • 85. ▪ WikiPedia Inforbox → Ontology 85 DBpedia https://www.researchgate.net/publication/321690179_Relative_Quality_and_Popularity_Evaluation_of_Multilingual_Wikipedia_Articles
  • 86. ▪ https://dbpedia.org/sparql 86 DBpedia SPARQL PREFIX ont: <http://dbpedia.org/ontology/> SELECT * WHERE {?comp rdf:type ont:Company. }
  • 88. ▪ Begin your query with ▪ They can be copied from ▪ http://dbpedia.org/snorql/ 88 Let’s try PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dc: <http://purl.org/dc/elements/1.1/> PREFIX : <http://dbpedia.org/resource/> PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX dbpedia: <http://dbpedia.org/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
  • 89. 89 Let’s try PREFIX ont: <http://dbpedia.org/ontology/> SELECT?a WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a } SELECT?a ?b WHERE {<http://dbpedia.org/resource/Apple_Inc.> ?a ?b } PREFIX ont: <http://dbpedia.org/ontology/> SELECT * WHERE {?a rdf:type ont:Company. ?a ont:product :IPad } PREFIX ont: <http://dbpedia.org/ontology/> SELECT * WHERE {?a ont:product ?b. ?b dbpedia2:weight ?c} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b ?c WHERE {?a ont:product ?b. ?b dbpedia2:weight ?c. FILTER regex( ?c , "Wi-Fi model:")} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b ?c WHERE {?a ont:product ?b. OPTIONAL {?b dbpedia2:weight ?c.}. }
  • 90. 90 Let’s try SELECT ?a ?b WHERE {?a foaf:name ?b} SELECT ?a ?b ?c WHERE {?a foaf:name ?b. ?a rdfs:label ?c.} SELECT ?a ?b ?c WHERE {?a foaf:name ?b; rdfs:label ?c.} SELECT ?a ?b ?c WHERE {?a foaf:name ?b. ?b rdfs:label ?c.} SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b.} SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b. FILTER ( ?b > 30).} SELECT ?a ?b ?c WHERE {?a dbpedia2:populationDensityKm ?b. FILTER ( ?b > 30). ?a rdfs:comment ?c} SELECT ?a ?b WHERE {?a foaf:name ?b}
  • 91. 91 Let’s try PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a OPTIONAL {?a dbpedia2:memory ?b}} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a OPTIONAL {?a dbpedia2:license ?c}} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a .OPTIONAL {?a dbpedia2:memory ?b}. OPTIONAL {?a dbpedia2:license ?c}} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a OPTIONAL {?a dbpedia2:license ?c}} PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b ?c WHERE {<http://dbpedia.org/resource/Apple_Inc.> ont:product ?a .OPTIONAL {?a dbpedia2:memory ?b}. OPTIONAL {?a dbpedia2:license ?c}}
  • 92. 92 Let’s try PREFIX ont: <http://dbpedia.org/ontology/> SELECT ?a ?b WHERE { <http://dbpedia.org/resource/Apple_Inc.> ont:product ?a. {?a dbpedia2:memory ?b } } PREFIX ont: <http://dbpedia.org/ontology/> select * where { {{:Microsoft ont:foundationPerson ?a } UNION {:Microsoft ont:industry ?a}}. OPTIONAL {?a ont:birthPlace ?c} } SELECT ?src ?age WHERE { GRAPH ?src {?x foaf:name "Bill Gates"@en. ?x dbpedia2:years ?age }} CONSTRUCT {?x ?y ?z} WHERE { GRAPH <http://dbpedia.org> {?x ?y ?z . ?x foaf:name "Bill Gates"@en }} DESCRIBE ?x WHERE { GRAPH <http://dbpedia.org> {?x foaf:name "Bill Gates"@en }} ASK {?x dbpedia2:name "iPad"@en }
  • 93. ▪ SPARQL ▪ https://www.w3.org/TR/rdf-sparql-query/ ▪ DBpedia ▪ https://wiki.dbpedia.org/ ▪ DBpedia SPARQL ▪ https://dbpedia.org/sparql ▪ Dbpedia SNORQL ▪ http://dbpedia.org/snorql/ 93 See Also …
  • 95. ▪ Linked Data is about using the Web to connect related data that wasn't previously linked, or using the Web to lower the barriers to linking data currently linked using other methods. ▪ More specifically, Wikipedia defines Linked Data as "a term used to describe a recommended best practice for exposing, sharing, and connecting pieces of data, information, and knowledge on the Semantic Web using URIs and RDF.“ ▪ http://linkeddata.org/ 95 Linked Open Data
  • 96. 96 5-star Data Open License Reuseable Open Format URI’s Linked Data e.g. Online PDF e.g. Excel e.g. CSV RDF files Ontologies
  • 99. 99 LOD Cloud → 2007 https://lod-cloud.net/
  • 100. 100 LOD Cloud → 2008 https://lod-cloud.net/
  • 101. 101 LOD Cloud → 2009 https://lod-cloud.net/
  • 102. 102 LOD Cloud → 2010 https://lod-cloud.net/
  • 103. 103 LOD Cloud → 2014 https://lod-cloud.net/
  • 104. 104 LOD Cloud → 2018 https://lod-cloud.net/
  • 105. 105 Process of accessing to other SPARQL end-point SPARQL Endpoint SPARQL Endpoint Linked OpenScholar Site PREFIX dcterms: <http://purl.org/dc/terms/> PREFIX dc: <http://purl.org/dc/elements/1.1/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX swrc: <http://swrc.ontoware.org/ontology#> SELECT DISTINCT ?s ?title ?name ?homepage ?page ?year WHERE { ?s rdfs:label ?title. FILTER regex(?title,"'.$kw.'",'i'). OPTIONAL { ?s dc:creator ?c_name. ?c_name rdfs:label ?name. ?s foaf:homepage ?homepage. ?s swrc:pages ?page. ?s dcterms:issued ?year. } } order by desc(?year) XMLHttpRequest responseXML
  • 106. 106 Federated search keyword Get endpoint Linked_Ope nScholar db Sparql query Sparql query Sparql query
  • 107. 107 Linked Open Data Kukrit Pramoj dbpedia:Singburi foaf:name dbpedia:birthPlace foaf:Person rdf:type nlt:kukrit Prefixes nlt: <http://www.nlt.go.th/person/> rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> foaf: <http://xmlns.com/foaf/0.1/> dbpedia: <http://dbpedia.org/resource/> dp: <http://dbpedia.org/property/> skos: <http://www.w3.org/2004/02/skos/core#Collection>
  • 108. 108 Linked Open Data Kukrit Pramoj dbpedia:Singburi foaf:name dbpedia:birthPlace foaf:Person rdf:type nlt:kukrit dbpedia:Cities_in_Thailand 232,766 dp:population skos:subject dbpedia:Singburi
  • 109. dbpedia:Cities_in_Thailand 232,766 dp:population skos:subject dbpedia:Singburi 109 Linked Open Data Kukrit Pramoj dbpedia:Singburi foaf:name dbpedia:birthPlace foaf:Person rdf:type nlt:kukrit
  • 111. ▪ DBpedia ▪ https://wiki.dbpedia.org/ ▪ Linked Open Data ▪ http://linkeddata.org/ ▪ LOD Cloud ▪ https://lod-cloud.net/ 111 See Also …
  • 112. 1. Get and Analyze Requirements 2. Create an Application Profiles 3. Create a Data Model with reused Vocabularies from Well-Known Ontologies • if no, create your own URIs and link them to well-known URIs. 4. Create an RDF graph following the model • Protégé (https://protege.stanford.edu/ ) 5. Create Semantic Web Rules (if any) • Protégé (https://protege.stanford.edu/ ) 6. Publish your Ontology via a SPARQL end-point • OpenLink Virtuoso (https://virtuoso.openlinksw.com/ ) 7. Maintain your ontology 112 Creating an Ontology