SlideShare a Scribd company logo
1 of 24
Linked Data &
  Semantic Web
  Technology




                  The Semantic Web
Part 5. Resource Description Framework (2)


                      Dr. Myungjin Lee
Typed Node
      • Typed Node
                – the resources described as instances of specific types or classes
                – being classified into different kinds or categories
                – by providing a predefined property, rdf:type


   1. <rdf:Description rdf:ID="item10245">
   2.        <rdf:type rdf:resource="http://www.example.com/terms/Tent"/>
   3. </rdf:Description>



                                                                         rdf:type
                     http://www.example.com/2002/04/products#item10245                   http://www.example.com/terms/Tent




                                                 an instance of that                a resource that represents a
                                                 category or class                  category or class of things




                                                                                                                             2
Linked Data & Semantic Web Technology
Abbreviation for Describing Typed Nodes
      • How to describe abbreviation for typed nodes
                – the rdf:type property and its value are removed
                – the rdf:Description element is replaced by an element whose name
                  is the QName corresponding to the value of the removed rdf:type
                  property

          1. <rdf:Description rdf:ID="item10245">
          2.        <rdf:type rdf:resource="http://www.example.com/terms/Tent"/>
          3. </rdf:Description>

                                                                                          replaced


                                                                               1. <exterms:Tent rdf:ID="item10245" />




                                                                            rdf:type
                        http://www.example.com/2002/04/products#item10245                http://www.example.com/terms/Tent




                                                                                                                             3
Linked Data & Semantic Web Technology
How to Describe Groups
      • a need to describe groups of things
                – such as,
                          • a book was created by several authors
                          • to list the students in a course


      • Vocabularies for groups
                – RDF Containers
                          • groups containing the members
                          • open list
                – RDF Collections
                          • groups containing only the specified members
                          • closed list




                                                                           4
Linked Data & Semantic Web Technology
RDF Containers
      • RDF Containers
                – to describe groups containing the members


      • Terms
                – Container
                          • a resource that contains things
                – Member
                          • the contained things
                          • resources (including blank nodes) or literals


      • Three types of RDf Containers
                – rdf:Bag
                – rdf:Seq
                – rdf:Alt


                                                                            5
Linked Data & Semantic Web Technology
RDF Containers
      • Bag
                – a resource having type rdf:Bag
                – a group of resources or literals, possibly including duplicate members
                – no significance in the order of the members


      • Sequence
                – a resource having type rdf:Seq
                – a group of resources or literals, possibly including duplicate members
                – the order of the members is significant


      • Alternative
                – a resource having type rdf:Alt
                – a group of resources or literals that are alternatives (typically for a single
                  value of a property)


                                                                                                   6
Linked Data & Semantic Web Technology
How to Describe a Resource of Containers
      • to give an rdf:type property whose value is one of the
        predefined resources rdf:Bag, rdf:Seq, or rdf:Alt

      • to describe each member (item) with the container resource:
                – in RDF Graph
                          • using a container membership property rdf:_n, where n is a decimal integer
                            greater than one
                – in RDF/XML
                          • using the rdf:li property




                                                                                                         7
Linked Data & Semantic Web Technology
Bag Container Description
      “Course 6.001 has the students Amy, Mohamed, Johann, Maria, and Phuong”




                                        <?xml version="1.0"?>
                                        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                                 xmlns:s="http://example.org/students/vocab#">

                                           <rdf:Description rdf:about="http://example.org/courses/6.001">
                                              <s:students>
                                                 <rdf:Bag>
                                                    <rdf:li rdf:resource="http://example.org/students/Amy"/>
                                                    <rdf:li rdf:resource="http://example.org/students/Mohamed"/>
                                                    <rdf:li rdf:resource="http://example.org/students/Johann"/>
                                                    <rdf:li rdf:resource="http://example.org/students/Maria"/>
                                                    <rdf:li rdf:resource="http://example.org/students/Phuong"/>
                                                 </rdf:Bag>
                                              </s:students>
                                           </rdf:Description>
                                        </rdf:RDF>                                                               8
Linked Data & Semantic Web Technology
Alt Container Description
      “The source code for X11 may be found at ftp.example.org, ftp1.example.org, or ftp2.example.org”




                                        <?xml version="1.0"?>
                                        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                                 xmlns:s="http://example.org/packages/vocab#">

                                           <rdf:Description rdf:about="http://example.org/packages/X11">
                                              <s:DistributionSite>
                                                 <rdf:Alt>
                                                    <rdf:li rdf:resource="ftp://ftp.example.org"/>
                                                    <rdf:li rdf:resource="ftp://ftp1.example.org"/>
                                                    <rdf:li rdf:resource="ftp://ftp2.example.org"/>
                                                 </rdf:Alt>
                                              </s:DistributionSite>
                                           </rdf:Description>
                                        </rdf:RDF>                                                       9
Linked Data & Semantic Web Technology
Seq Container Description
      “Schedules of Monday”




                                        <?xml version="1.0"?>
                                        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                                 xmlns:s="http://www.reminders.org#">

                                           <rdf:Description rdf:about="http://www.reminders.org#MondayMeetings">
                                              <s:activities>
                                                 <rdf:Seq>
                                                    <rdf:li>Meet with CEO at 10am</rdf:li>
                                                    <rdf:li>Luncheon at The Eatery</rdf:li>
                                                    <rdf:li>Flight at 3pm</rdf:li>
                                                 </rdf:Seq>
                                              </s:activities>
                                           </rdf:Description>
                                        </rdf:RDF>
                                                                                                                   10
Linked Data & Semantic Web Technology
RDF Collections
      • A limitation of the containers
                – no way to close resources
                          • such as, "these are all the members of the container“
                – no way to exclude the possibility that there is another graph somewhere
                  that describes additional members


      • RDF Collections
                – for describing groups containing only the specified members
                – a group of things represented as a list structure in the RDF graph




                                                                                            11
Linked Data & Semantic Web Technology
How to Describe a RDF Collection
      • to be constructed using a predefined collection vocabulary
                – the predefined type rdf:List
                – the predefined properties rdf:first and rdf:rest
                – and the predefined resource rdf:nil


      "The students in course 6.001 are Amy, Mohamed, and Johann"




                                                                     12
Linked Data & Semantic Web Technology
How to Describe RDF/XML for a Collection
      • rdf:parseType attribute
                – to indicate that the contents of an element are to be interpreted in a special
                  way


      • rdf:parseType="Collection" attribute
                – a group of nested elements representing the members of the collection

                             <?xml version="1.0"?>
                             <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                      xmlns:s="http://example.org/students/vocab#">

                                <rdf:Description rdf:about="http://example.org/courses/6.001">
                                   <s:students rdf:parseType="Collection">
                                         <rdf:Description rdf:about="http://example.org/students/Amy"/>
                                         <rdf:Description rdf:about="http://example.org/students/Mohamed"/>
                                         <rdf:Description rdf:about="http://example.org/students/Johann"/>
                                   </s:students>
                                </rdf:Description>
                             </rdf:RDF>



                                                                                                              13
Linked Data & Semantic Web Technology
RDF Reification
      • What is RDF Reifications?
                – to describe other RDF statements using RDF
                – such as,
                          • to record information about when statements were made, who made them, or
                            other similar information




                                            Obama says
                               Northern Ireland requires urgent work.




                                                                                                       14
Linked Data & Semantic Web Technology
Reification Quad
      • description of a statement, reification
                – the type rdf:Statement
                – the properties rdf:subject, rdf:predicate, and rdf:object


      “Obama says Northern Ireland requires urgent work.”


                                        ex:triple12345   rdf:type        rdf:Statement .
                                        ex:triple12345   rdf:subject     ex:NorthernIreland .
                                        ex:triple12345   rdf:predicate   ex:require .
                                        ex:triple12345   rdf:object      ex:UrgentWork .




                                                                                                15
Linked Data & Semantic Web Technology
RDF/XML for RDF Reification
      • “Obama says Northern Ireland requires urgent work.”




                         <?xml version="1.0"?>
                         <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                  xmlns:ex="http://www.example.com/">

                            <rdf:Description rdf:about="http://www.example.com/Obama">
                               <ex:say>
                                  <rdf:Statement>
                                     <rdf:subject rdf:resource="http://www.example.com/NorthenIreland"/>
                                     <rdf:predicate rdf:resource="http://www.example.com/require"/>
                                     <rdf:object rdf:resource="http://www.example.com/UrgentWork"/>
                                  </rdf:Statement>
                               </ex:say>
                            </rdf:Description>
                         </rdf:RDF>

                                                                                                           16
Linked Data & Semantic Web Technology
Notes for RDF Reification
      • Why we need RDF Reification?
                – Modeling Data Provenance
                – Formalizing Statements about Reliability (Trust)
                – Definition of Metadata about Statements


      • the conventional use of reification
                – do not imagine that the vocabulary defines some things that are not
                  actually defined




                                                                                        17
Linked Data & Semantic Web Technology
Structured Values
                                                                                    This is the decimal value of weight
                                                                                    property using typed literal.
     exproduct:item10245                exterms:weight   "2.4"^^xsd:decimal .




      • rdf:value Property
                – to describe the main value (if there is one) of a structured value


      • How to add an indication of the unit of measure (kilograms)

                       exproduct:item10245       exterms:weight   _:weight10245 .
                       _:weight10245             rdf:value        "2.4"^^xsd:decimal .
                       _:weight10245             exterms:units    exunits:kilograms .




                                                                                                                          18
Linked Data & Semantic Web Technology
RDF/XML for Structured Value
   exproduct:item10245                  exterms:weight   _:weight10245 .
   _:weight10245                        rdf:value        "2.4"^^xsd:decimal .
   _:weight10245                        exterms:units    exunits:kilograms .



                         <?xml version="1.0"?>
                         <!DOCTYPE rdf:RDF [<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">]>
                         <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                     xmlns:exterms="http://www.example.org/terms/">

                             <rdf:Description rdf:about="http://www.example.com/2002/04/products#item10245">
                                <exterms:weight rdf:parseType="Resource">
                                  <rdf:value rdf:datatype="&xsd;decimal">2.4</rdf:value>
                                  <exterms:units rdf:resource="http://www.example.org/units/kilograms"/>
                                </exterms:weight>
                             </rdf:Description>

                         </rdf:RDF>



      • rdf:parseType=“Resource” attribute
                – to indicate that the contents of an element are to be interpreted as the
                  description of a new (blank node) resource, without a nested
                  rdf:Description element

                                                                                                               19
Linked Data & Semantic Web Technology
XML Literal
      • rdf:parseType=“Literal” attribute
                – to indicate that the contents of the element are to be interpreted as an
                  XML fragment

                         <?xml version="1.0"?>
                         <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                                     xmlns:dc="http://purl.org/dc/elements/1.1/"
                                     xml:base="http://www.example.com/books">

                             <rdf:Description rdf:ID="book12345">
                                <dc:title rdf:parseType="Literal">
                                  <span xml:lang="en">
                                    The <em>&lt;br /&gt;</em> Element Considered Harmful.
                                  </span>
                                </dc:title>
                             </rdf:Description>

                         </rdf:RDF>




                                                                                             20
Linked Data & Semantic Web Technology
RDF Serialization
      • N-Triples
                – RDF Test Cases, W3C Recommendation, 10 February 2004
                – a line-based, plain text serialization format for storing and transmitting RDF data

      • Notation 3 (N3)
                – a shorthand non-XML serialization of RDF models, designed with human-
                  readability in mind
                – much more compact and readable than XML RDF notation

      • Turtle (Terse RDF Triple Language)
                – W3C Candidate Recommendation, 19 February 2013
                – a format for expressing data in the Resource Description Framework (RDF) data
                  model
                – a subset of Notation3 (N3) language, and a superset of the minimal N-Triples format

      • RDF/XML
                – W3C Recommendation, 10 February 2004
                – an XML syntax for writing down and exchanging RDF graphs



                                                                                                        21
Linked Data & Semantic Web Technology
N-Triple
      <http://en.wikipedia.org/wiki/Tony_Benn> <http://purl.org/dc/elements/1.1/title> "Tony Benn" .
      <http://en.wikipedia.org/wiki/Tony_Benn> <http://purl.org/dc/elements/1.1/publisher> "Wikipedia" .



                         N3
                         @prefix dc: <http://purl.org/dc/elements/1.1/>.

                         <http://en.wikipedia.org/wiki/Tony_Benn>          dc:title "Tony Benn";
                                                                           dc:publisher "Wikipedia".



                                        RDF/XML
                                        <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://en.wikipedia.org/wiki/Tony_Benn">
                                                    <dc:title>Tony Benn</dc:title>
                                                    <dc:publisher>Wikipedia</dc:publisher>
                                              </rdf:Description>
                                        </rdf:RDF>



                                                   Turtle
                                                   @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
                                                   @prefix dc: <http://purl.org/dc/elements/1.1/> .
                                                   @prefix ex: <http://example.org/stuff/1.0/> .

                                                   <http://www.w3.org/TR/rdf-syntax-grammar>
                                                     dc:title "RDF/XML Syntax Specification (Revised)" ;
                                                     ex:editor [ ex:fullname "Dave Beckett", "Dave R. Beckett";
                                                                  ex:homePage <http://purl.org/net/dajobe/>
                                                     ] .



                                                                                                                     22
Linked Data & Semantic Web Technology
References
      •       http://www.w3.org/TR/2004/REC-rdf-primer-20040210/
      •       http://www.slideshare.net/lysander07/openhpi-24
      •       http://www.slideshare.net/lysander07/openhpi-25
      •       http://www.slideshare.net/onlyjiny/linkeddata
      •       http://en.wikipedia.org/wiki/N-Triples
      •       http://en.wikipedia.org/wiki/Notation3
      •       http://en.wikipedia.org/wiki/Turtle_(syntax)




                                                                   23
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/
                                                                                       24
                                                                                        24
Linked Data & Semantic Web Technology

More Related Content

What's hot

Chapter 3 semantic web
Chapter 3 semantic webChapter 3 semantic web
Chapter 3 semantic webR A Akerkar
 
Resource description framework
Resource description frameworkResource description framework
Resource description frameworkhozifa1010
 
Chapter 2 semantic web
Chapter 2 semantic webChapter 2 semantic web
Chapter 2 semantic webR A Akerkar
 
Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!Armin Haller
 
Saveface - Save your Facebook content as RDF data
Saveface - Save your Facebook content as RDF dataSaveface - Save your Facebook content as RDF data
Saveface - Save your Facebook content as RDF dataFuming Shih
 
SemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n BoltsSemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n BoltsRinke Hoekstra
 
Web ontology language (owl)
Web ontology language (owl)Web ontology language (owl)
Web ontology language (owl)Ameer Sameer
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked DataGabriela Agustini
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011Peter Mika
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFSNilesh Wagmare
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for BeginnerMyungjin Lee
 
Semantic Web Austin Yahoo
Semantic Web Austin YahooSemantic Web Austin Yahoo
Semantic Web Austin YahooPeter Mika
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Researchadameq
 
LOD(Linked Open Data) Recommendations
LOD(Linked Open Data) RecommendationsLOD(Linked Open Data) Recommendations
LOD(Linked Open Data) RecommendationsMyungjin Lee
 

What's hot (18)

Chapter 3 semantic web
Chapter 3 semantic webChapter 3 semantic web
Chapter 3 semantic web
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Chapter 2 semantic web
Chapter 2 semantic webChapter 2 semantic web
Chapter 2 semantic web
 
Metadata is back!
Metadata is back!Metadata is back!
Metadata is back!
 
SWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDFSWT Lecture Session 2 - RDF
SWT Lecture Session 2 - RDF
 
Get on the Linked Data Web!
Get on the Linked Data Web!Get on the Linked Data Web!
Get on the Linked Data Web!
 
Rdf
RdfRdf
Rdf
 
Saveface - Save your Facebook content as RDF data
Saveface - Save your Facebook content as RDF dataSaveface - Save your Facebook content as RDF data
Saveface - Save your Facebook content as RDF data
 
SemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n BoltsSemanticWeb Nuts 'n Bolts
SemanticWeb Nuts 'n Bolts
 
Web ontology language (owl)
Web ontology language (owl)Web ontology language (owl)
Web ontology language (owl)
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked Data
 
Hack U Barcelona 2011
Hack U Barcelona 2011Hack U Barcelona 2011
Hack U Barcelona 2011
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFS
 
Linked Data Modeling for Beginner
Linked Data Modeling for BeginnerLinked Data Modeling for Beginner
Linked Data Modeling for Beginner
 
Semantic Web Austin Yahoo
Semantic Web Austin YahooSemantic Web Austin Yahoo
Semantic Web Austin Yahoo
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
 
General Introduction for Semantic Web and Linked Open Data
General Introduction for Semantic Web and Linked Open DataGeneral Introduction for Semantic Web and Linked Open Data
General Introduction for Semantic Web and Linked Open Data
 
LOD(Linked Open Data) Recommendations
LOD(Linked Open Data) RecommendationsLOD(Linked Open Data) Recommendations
LOD(Linked Open Data) Recommendations
 

Viewers also liked

Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuro
Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuroLinked Open Data, Beni Culturali e integrazione uno sguardo sul futuro
Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuroHyperborea
 
WIKIDATA: un nuovo modo di diffondere dati strutturati
WIKIDATA: un nuovo modo di diffondere dati strutturatiWIKIDATA: un nuovo modo di diffondere dati strutturati
WIKIDATA: un nuovo modo di diffondere dati strutturatiCulturaItalia
 
IC2008 Emanuele Della Valle Semantic Web
IC2008 Emanuele Della Valle Semantic WebIC2008 Emanuele Della Valle Semantic Web
IC2008 Emanuele Della Valle Semantic WebEmanuele Della Valle
 
Overview Of Project Management - P&MSP2010 (2/11)
Overview Of Project Management - P&MSP2010 (2/11)Overview Of Project Management - P&MSP2010 (2/11)
Overview Of Project Management - P&MSP2010 (2/11)Emanuele Della Valle
 
Tracking Epidemics with Natural Language Processing and Crowdsourcing
Tracking Epidemics with Natural Language Processing and Crowdsourcing�Tracking Epidemics with Natural Language Processing and Crowdsourcing�
Tracking Epidemics with Natural Language Processing and CrowdsourcingRobert Munro
 
Introduction to Machine Learning with Spark
Introduction to Machine Learning with SparkIntroduction to Machine Learning with Spark
Introduction to Machine Learning with Sparkdatamantra
 
Presentazione Cama_Primiceri_Atro
Presentazione Cama_Primiceri_AtroPresentazione Cama_Primiceri_Atro
Presentazione Cama_Primiceri_AtroBernadetteCama
 
Machine Learning With Spark
Machine Learning With SparkMachine Learning With Spark
Machine Learning With SparkShivaji Dutta
 

Viewers also liked (9)

Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuro
Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuroLinked Open Data, Beni Culturali e integrazione uno sguardo sul futuro
Linked Open Data, Beni Culturali e integrazione uno sguardo sul futuro
 
WIKIDATA: un nuovo modo di diffondere dati strutturati
WIKIDATA: un nuovo modo di diffondere dati strutturatiWIKIDATA: un nuovo modo di diffondere dati strutturati
WIKIDATA: un nuovo modo di diffondere dati strutturati
 
IC2008 Emanuele Della Valle Semantic Web
IC2008 Emanuele Della Valle Semantic WebIC2008 Emanuele Della Valle Semantic Web
IC2008 Emanuele Della Valle Semantic Web
 
Overview Of Project Management - P&MSP2010 (2/11)
Overview Of Project Management - P&MSP2010 (2/11)Overview Of Project Management - P&MSP2010 (2/11)
Overview Of Project Management - P&MSP2010 (2/11)
 
Tracking Epidemics with Natural Language Processing and Crowdsourcing
Tracking Epidemics with Natural Language Processing and Crowdsourcing�Tracking Epidemics with Natural Language Processing and Crowdsourcing�
Tracking Epidemics with Natural Language Processing and Crowdsourcing
 
Optimising Google's Knowledge Graph - #SMX Munich
Optimising Google's Knowledge Graph - #SMX MunichOptimising Google's Knowledge Graph - #SMX Munich
Optimising Google's Knowledge Graph - #SMX Munich
 
Introduction to Machine Learning with Spark
Introduction to Machine Learning with SparkIntroduction to Machine Learning with Spark
Introduction to Machine Learning with Spark
 
Presentazione Cama_Primiceri_Atro
Presentazione Cama_Primiceri_AtroPresentazione Cama_Primiceri_Atro
Presentazione Cama_Primiceri_Atro
 
Machine Learning With Spark
Machine Learning With SparkMachine Learning With Spark
Machine Learning With Spark
 

Similar to The Semantic Web #5 - RDF (2)

A Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebA Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebShamod Lacoul
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic webMarakana Inc.
 
ontology.ppt
ontology.pptontology.ppt
ontology.pptPrerak10
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introductionKai Li
 
Rdf Overview Presentation
Rdf Overview PresentationRdf Overview Presentation
Rdf Overview PresentationKen Varnum
 
Publishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesPublishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesNikolaos Konstantinou
 
semantic web resource description framework
semantic web resource description frameworksemantic web resource description framework
semantic web resource description frameworkKomalFatima37
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIsJosef Petrák
 
The Semantic Web #6 - RDF Schema
The Semantic Web #6 - RDF SchemaThe Semantic Web #6 - RDF Schema
The Semantic Web #6 - RDF SchemaMyungjin Lee
 
06 gioca-ontologies
06 gioca-ontologies06 gioca-ontologies
06 gioca-ontologiesnidzokus
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeDan Brickley
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itJose Luis Lopez Pino
 
Introduction to RDFa
Introduction to RDFaIntroduction to RDFa
Introduction to RDFaIvan Herman
 
Lecture the semantic_web_part_2
Lecture the semantic_web_part_2Lecture the semantic_web_part_2
Lecture the semantic_web_part_2IKS - Project
 

Similar to The Semantic Web #5 - RDF (2) (20)

A Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic WebA Hands On Overview Of The Semantic Web
A Hands On Overview Of The Semantic Web
 
A hands on overview of the semantic web
A hands on overview of the semantic webA hands on overview of the semantic web
A hands on overview of the semantic web
 
ontology.ppt
ontology.pptontology.ppt
ontology.ppt
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introduction
 
Rdf Overview Presentation
Rdf Overview PresentationRdf Overview Presentation
Rdf Overview Presentation
 
RDF Data Model
RDF Data ModelRDF Data Model
RDF Data Model
 
RDFauthor (EKAW)
RDFauthor (EKAW)RDFauthor (EKAW)
RDFauthor (EKAW)
 
Publishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web TechnologiesPublishing Data Using Semantic Web Technologies
Publishing Data Using Semantic Web Technologies
 
Technical Background
Technical BackgroundTechnical Background
Technical Background
 
Tutorial for RDF Graphs
Tutorial for RDF GraphsTutorial for RDF Graphs
Tutorial for RDF Graphs
 
semantic web resource description framework
semantic web resource description frameworksemantic web resource description framework
semantic web resource description framework
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
 
The Semantic Web #6 - RDF Schema
The Semantic Web #6 - RDF SchemaThe Semantic Web #6 - RDF Schema
The Semantic Web #6 - RDF Schema
 
06 gioca-ontologies
06 gioca-ontologies06 gioca-ontologies
06 gioca-ontologies
 
Semantic Web - RDF
Semantic Web - RDFSemantic Web - RDF
Semantic Web - RDF
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use it
 
Introduction to RDFa
Introduction to RDFaIntroduction to RDFa
Introduction to RDFa
 
RDFa Tutorial
RDFa TutorialRDFa Tutorial
RDFa Tutorial
 
Lecture the semantic_web_part_2
Lecture the semantic_web_part_2Lecture the semantic_web_part_2
Lecture the semantic_web_part_2
 

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
 
LODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopLODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopMyungjin Lee
 
Introduction of Deep Learning
Introduction of Deep LearningIntroduction of Deep Learning
Introduction of Deep LearningMyungjin Lee
 
쉽게 이해하는 LOD
쉽게 이해하는 LOD쉽게 이해하는 LOD
쉽게 이해하는 LODMyungjin Lee
 
서울시 열린데이터 광장 문화관광 분야 LOD 서비스
서울시 열린데이터 광장 문화관광 분야 LOD 서비스서울시 열린데이터 광장 문화관광 분야 LOD 서비스
서울시 열린데이터 광장 문화관광 분야 LOD 서비스Myungjin 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
 

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
 
공공데이터, 현재 우리는?
공공데이터, 현재 우리는?공공데이터, 현재 우리는?
공공데이터, 현재 우리는?
 
LODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data WorkshopLODAC 2017 Linked Open Data Workshop
LODAC 2017 Linked Open Data Workshop
 
Introduction of Deep Learning
Introduction of Deep LearningIntroduction of Deep Learning
Introduction of Deep Learning
 
쉽게 이해하는 LOD
쉽게 이해하는 LOD쉽게 이해하는 LOD
쉽게 이해하는 LOD
 
서울시 열린데이터 광장 문화관광 분야 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
 

The Semantic Web #5 - RDF (2)

  • 1. Linked Data & Semantic Web Technology The Semantic Web Part 5. Resource Description Framework (2) Dr. Myungjin Lee
  • 2. Typed Node • Typed Node – the resources described as instances of specific types or classes – being classified into different kinds or categories – by providing a predefined property, rdf:type 1. <rdf:Description rdf:ID="item10245"> 2. <rdf:type rdf:resource="http://www.example.com/terms/Tent"/> 3. </rdf:Description> rdf:type http://www.example.com/2002/04/products#item10245 http://www.example.com/terms/Tent an instance of that a resource that represents a category or class category or class of things 2 Linked Data & Semantic Web Technology
  • 3. Abbreviation for Describing Typed Nodes • How to describe abbreviation for typed nodes – the rdf:type property and its value are removed – the rdf:Description element is replaced by an element whose name is the QName corresponding to the value of the removed rdf:type property 1. <rdf:Description rdf:ID="item10245"> 2. <rdf:type rdf:resource="http://www.example.com/terms/Tent"/> 3. </rdf:Description> replaced 1. <exterms:Tent rdf:ID="item10245" /> rdf:type http://www.example.com/2002/04/products#item10245 http://www.example.com/terms/Tent 3 Linked Data & Semantic Web Technology
  • 4. How to Describe Groups • a need to describe groups of things – such as, • a book was created by several authors • to list the students in a course • Vocabularies for groups – RDF Containers • groups containing the members • open list – RDF Collections • groups containing only the specified members • closed list 4 Linked Data & Semantic Web Technology
  • 5. RDF Containers • RDF Containers – to describe groups containing the members • Terms – Container • a resource that contains things – Member • the contained things • resources (including blank nodes) or literals • Three types of RDf Containers – rdf:Bag – rdf:Seq – rdf:Alt 5 Linked Data & Semantic Web Technology
  • 6. RDF Containers • Bag – a resource having type rdf:Bag – a group of resources or literals, possibly including duplicate members – no significance in the order of the members • Sequence – a resource having type rdf:Seq – a group of resources or literals, possibly including duplicate members – the order of the members is significant • Alternative – a resource having type rdf:Alt – a group of resources or literals that are alternatives (typically for a single value of a property) 6 Linked Data & Semantic Web Technology
  • 7. How to Describe a Resource of Containers • to give an rdf:type property whose value is one of the predefined resources rdf:Bag, rdf:Seq, or rdf:Alt • to describe each member (item) with the container resource: – in RDF Graph • using a container membership property rdf:_n, where n is a decimal integer greater than one – in RDF/XML • using the rdf:li property 7 Linked Data & Semantic Web Technology
  • 8. Bag Container Description “Course 6.001 has the students Amy, Mohamed, Johann, Maria, and Phuong” <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:s="http://example.org/students/vocab#"> <rdf:Description rdf:about="http://example.org/courses/6.001"> <s:students> <rdf:Bag> <rdf:li rdf:resource="http://example.org/students/Amy"/> <rdf:li rdf:resource="http://example.org/students/Mohamed"/> <rdf:li rdf:resource="http://example.org/students/Johann"/> <rdf:li rdf:resource="http://example.org/students/Maria"/> <rdf:li rdf:resource="http://example.org/students/Phuong"/> </rdf:Bag> </s:students> </rdf:Description> </rdf:RDF> 8 Linked Data & Semantic Web Technology
  • 9. Alt Container Description “The source code for X11 may be found at ftp.example.org, ftp1.example.org, or ftp2.example.org” <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:s="http://example.org/packages/vocab#"> <rdf:Description rdf:about="http://example.org/packages/X11"> <s:DistributionSite> <rdf:Alt> <rdf:li rdf:resource="ftp://ftp.example.org"/> <rdf:li rdf:resource="ftp://ftp1.example.org"/> <rdf:li rdf:resource="ftp://ftp2.example.org"/> </rdf:Alt> </s:DistributionSite> </rdf:Description> </rdf:RDF> 9 Linked Data & Semantic Web Technology
  • 10. Seq Container Description “Schedules of Monday” <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:s="http://www.reminders.org#"> <rdf:Description rdf:about="http://www.reminders.org#MondayMeetings"> <s:activities> <rdf:Seq> <rdf:li>Meet with CEO at 10am</rdf:li> <rdf:li>Luncheon at The Eatery</rdf:li> <rdf:li>Flight at 3pm</rdf:li> </rdf:Seq> </s:activities> </rdf:Description> </rdf:RDF> 10 Linked Data & Semantic Web Technology
  • 11. RDF Collections • A limitation of the containers – no way to close resources • such as, "these are all the members of the container“ – no way to exclude the possibility that there is another graph somewhere that describes additional members • RDF Collections – for describing groups containing only the specified members – a group of things represented as a list structure in the RDF graph 11 Linked Data & Semantic Web Technology
  • 12. How to Describe a RDF Collection • to be constructed using a predefined collection vocabulary – the predefined type rdf:List – the predefined properties rdf:first and rdf:rest – and the predefined resource rdf:nil "The students in course 6.001 are Amy, Mohamed, and Johann" 12 Linked Data & Semantic Web Technology
  • 13. How to Describe RDF/XML for a Collection • rdf:parseType attribute – to indicate that the contents of an element are to be interpreted in a special way • rdf:parseType="Collection" attribute – a group of nested elements representing the members of the collection <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:s="http://example.org/students/vocab#"> <rdf:Description rdf:about="http://example.org/courses/6.001"> <s:students rdf:parseType="Collection"> <rdf:Description rdf:about="http://example.org/students/Amy"/> <rdf:Description rdf:about="http://example.org/students/Mohamed"/> <rdf:Description rdf:about="http://example.org/students/Johann"/> </s:students> </rdf:Description> </rdf:RDF> 13 Linked Data & Semantic Web Technology
  • 14. RDF Reification • What is RDF Reifications? – to describe other RDF statements using RDF – such as, • to record information about when statements were made, who made them, or other similar information Obama says Northern Ireland requires urgent work. 14 Linked Data & Semantic Web Technology
  • 15. Reification Quad • description of a statement, reification – the type rdf:Statement – the properties rdf:subject, rdf:predicate, and rdf:object “Obama says Northern Ireland requires urgent work.” ex:triple12345 rdf:type rdf:Statement . ex:triple12345 rdf:subject ex:NorthernIreland . ex:triple12345 rdf:predicate ex:require . ex:triple12345 rdf:object ex:UrgentWork . 15 Linked Data & Semantic Web Technology
  • 16. RDF/XML for RDF Reification • “Obama says Northern Ireland requires urgent work.” <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ex="http://www.example.com/"> <rdf:Description rdf:about="http://www.example.com/Obama"> <ex:say> <rdf:Statement> <rdf:subject rdf:resource="http://www.example.com/NorthenIreland"/> <rdf:predicate rdf:resource="http://www.example.com/require"/> <rdf:object rdf:resource="http://www.example.com/UrgentWork"/> </rdf:Statement> </ex:say> </rdf:Description> </rdf:RDF> 16 Linked Data & Semantic Web Technology
  • 17. Notes for RDF Reification • Why we need RDF Reification? – Modeling Data Provenance – Formalizing Statements about Reliability (Trust) – Definition of Metadata about Statements • the conventional use of reification – do not imagine that the vocabulary defines some things that are not actually defined 17 Linked Data & Semantic Web Technology
  • 18. Structured Values This is the decimal value of weight property using typed literal. exproduct:item10245 exterms:weight "2.4"^^xsd:decimal . • rdf:value Property – to describe the main value (if there is one) of a structured value • How to add an indication of the unit of measure (kilograms) exproduct:item10245 exterms:weight _:weight10245 . _:weight10245 rdf:value "2.4"^^xsd:decimal . _:weight10245 exterms:units exunits:kilograms . 18 Linked Data & Semantic Web Technology
  • 19. RDF/XML for Structured Value exproduct:item10245 exterms:weight _:weight10245 . _:weight10245 rdf:value "2.4"^^xsd:decimal . _:weight10245 exterms:units exunits:kilograms . <?xml version="1.0"?> <!DOCTYPE rdf:RDF [<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">]> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:exterms="http://www.example.org/terms/"> <rdf:Description rdf:about="http://www.example.com/2002/04/products#item10245"> <exterms:weight rdf:parseType="Resource"> <rdf:value rdf:datatype="&xsd;decimal">2.4</rdf:value> <exterms:units rdf:resource="http://www.example.org/units/kilograms"/> </exterms:weight> </rdf:Description> </rdf:RDF> • rdf:parseType=“Resource” attribute – to indicate that the contents of an element are to be interpreted as the description of a new (blank node) resource, without a nested rdf:Description element 19 Linked Data & Semantic Web Technology
  • 20. XML Literal • rdf:parseType=“Literal” attribute – to indicate that the contents of the element are to be interpreted as an XML fragment <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="http://www.example.com/books"> <rdf:Description rdf:ID="book12345"> <dc:title rdf:parseType="Literal"> <span xml:lang="en"> The <em>&lt;br /&gt;</em> Element Considered Harmful. </span> </dc:title> </rdf:Description> </rdf:RDF> 20 Linked Data & Semantic Web Technology
  • 21. RDF Serialization • N-Triples – RDF Test Cases, W3C Recommendation, 10 February 2004 – a line-based, plain text serialization format for storing and transmitting RDF data • Notation 3 (N3) – a shorthand non-XML serialization of RDF models, designed with human- readability in mind – much more compact and readable than XML RDF notation • Turtle (Terse RDF Triple Language) – W3C Candidate Recommendation, 19 February 2013 – a format for expressing data in the Resource Description Framework (RDF) data model – a subset of Notation3 (N3) language, and a superset of the minimal N-Triples format • RDF/XML – W3C Recommendation, 10 February 2004 – an XML syntax for writing down and exchanging RDF graphs 21 Linked Data & Semantic Web Technology
  • 22. N-Triple <http://en.wikipedia.org/wiki/Tony_Benn> <http://purl.org/dc/elements/1.1/title> "Tony Benn" . <http://en.wikipedia.org/wiki/Tony_Benn> <http://purl.org/dc/elements/1.1/publisher> "Wikipedia" . N3 @prefix dc: <http://purl.org/dc/elements/1.1/>. <http://en.wikipedia.org/wiki/Tony_Benn> dc:title "Tony Benn"; dc:publisher "Wikipedia". RDF/XML <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://en.wikipedia.org/wiki/Tony_Benn"> <dc:title>Tony Benn</dc:title> <dc:publisher>Wikipedia</dc:publisher> </rdf:Description> </rdf:RDF> Turtle @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix dc: <http://purl.org/dc/elements/1.1/> . @prefix ex: <http://example.org/stuff/1.0/> . <http://www.w3.org/TR/rdf-syntax-grammar> dc:title "RDF/XML Syntax Specification (Revised)" ; ex:editor [ ex:fullname "Dave Beckett", "Dave R. Beckett"; ex:homePage <http://purl.org/net/dajobe/> ] . 22 Linked Data & Semantic Web Technology
  • 23. References • http://www.w3.org/TR/2004/REC-rdf-primer-20040210/ • http://www.slideshare.net/lysander07/openhpi-24 • http://www.slideshare.net/lysander07/openhpi-25 • http://www.slideshare.net/onlyjiny/linkeddata • http://en.wikipedia.org/wiki/N-Triples • http://en.wikipedia.org/wiki/Notation3 • http://en.wikipedia.org/wiki/Turtle_(syntax) 23 Linked Data & Semantic Web Technology
  • 24. 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/ 24 24 Linked Data & Semantic Web Technology