SlideShare a Scribd company logo
Linked Data Preview
Jay Myers,
Every day we create 2.5
quintillion bytes of data
(equivalent to 3.4 billion HD
movies)
http://www.evolutionoftheweb.com
What if we could use these
webs of data as a global DB?
Linked Data
“A new form of Web content that is meaningful to
computers
will unleash a revolution of new possibilities” - TBL
Linked Data is:
A set of standards for publishing
and connecting structured data
on the web.
Linked Data
• Built on common web principles: HTTP, URIs,
hyperlinks
• URIs to identify data entities and
relationships between things
• Easily combine data sources
Built on RDF
• “Resource Description Framework”
• Model for data exchange on the web
• Expresses relationships between things
The RDF “Triple”
Entity - Attribute - Value
or
Subject - Predicate - Object
Linked Data Vocabularies
• Schemas for the web of data
• Distributed over the web (via URIs!)
• Resolvable on the web for people to discover
and learn how to use
Popular Open Vocabularies
Name URI Description
Bio http://purl.org/vocab/bio/
0.1/
Describes biographical
information about
people, both living and
dead
FOAF http://xmlns.com/foaf/0.
1/
“Friend of a Friend”,
describes social
networks and person
relationships
FIBO In development “Financial Industry
Business Ontology”,
common vocabulary for
financial terminology
Good Relations http://purl.org/goodrelati
ons/v1
Annotates product
offers and products
vCard http://www.w3.org/2006/
vcard/ns#
Describes People and
Organizations
Make Your Own
@prefix gsp: <http://gs1.org/ns/product#> .
<http://gs1.org/ns/product>
a owl:Ontology ;
rdfs:label "GS1 Global Structured Commerce Classification Ontology"@en ;
rdfs:comment "GS1 Product Ontologies based off structured Commerce Classification work" ;
dct:creator [foaf:name "Jay Myers"] .
gsp:Product a rdfs:Class, owl:Class ;
rdfs:isDefinedBy <http://gs1.org/vocab/product> ;
rdfs:label "Product"@en ;
rdfs:comment "A GS1 recoginzed product" .
gsp:Book a rdfs:Class, owl:Class ;
rdfs:isDefinedBy <http://gs1.org/vocab/product> ;
rdfs:subClassOf gsp:BooksMusicMovies ;
rdfs:label "Book"@en ;
rdfs:comment "A product that is classified as a book" .
https://github.com/jaymyers/gs1-ontology
A Simple Triple
<http://jaymyers.com/jay/> foaf:name “Jay Myers”;
A Collection of Triples
<jay> a foaf:Person;
foaf:givenname "Jay";
foaf:family_name "Myers";
foaf:gender "Male";
foaf:phone <tel:6122965836>;
foaf:title "Technical Product Manager";
foaf:workplaceHomepage <http://www.bestbuy.com>;
foaf:knows <http://davidwormald.com/david/>.
Multiple RDF statements (and
links!) connect to form graphs of
data
<tel:6122
965836>
“Jay” “David”
<tel:6125
551212>
<tel:6125
555555> “Arun”
http://davidwormald.com/
david/
http://jaymyers.com/jay/
http://arunbatchu.net/arun
/
Let’s query the web of
data!SPARQL: SPARQL
Protocol and RDF Query
Language
SELECT Query
prefix foaf: <http://xmlns.com/foaf/0.1/>
select ?firstname ?lastname ?phonenumber
from <http://jaymyers.com/jay/>
from <http://davidwormald.com/david/>
from <http://arunbatchu.net/arun/>
where{
?person foaf:givenname ?firstname ;
foaf:lastname ?lastname ;
foaf:phone ?phonenumber .
}
LIMIT 2
Namespace
prefix
Three fields
Three data
sources
Specify
conditions
Return two
DBPedia Query
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?name ?person ?artist ?birth WHERE {
?person dbo:birthDate ?birth .
?person foaf:name ?name .
?person dbo:hometown <http://dbpedia.org/resource/Republic_of_Ireland> .
?person rdf:type <http://dbpedia.org/ontology/MusicalArtist> .
?person <http://dbpedia.org/ontology/associatedMusicalArtist> ?artist .
}
ORDER BY ?name
Music artists whose birthplace is Ireland
DBPedia Query
SELECT distinct ?episode ?chalkboard_gag WHERE
{
?episodeno <http://purl.org/dc/terms/subject>
<http://dbpedia.org/resource/Category:The_Simpsons> .
?episode dbpedia2:blackboard ?chalkboard_gag .
}
All the phrases Bart Simpson wrote on the school
blackboard in the beginning of the Simpsons
SPARQL nuggets
• With SPARQL you can query knowledge graphs
• SPARQL is to the Semantic Web and the Web in general what SQL is to
relational databases
• SPARQL is a W3C recommendation and is supported by many different
database vendors (no vendor lock-in)
• With SPARQL you benefit from the potential to make a collection of data
sources look and query like one big database
• SPARQL is also a standardized update and graph traversal language
• SPARQL allows you to explore data
• With SPARQL you can define inference rules to gain new information
from existing facts
“SPARQL is the new King of all Data Scientist’s tools”, Andreas Blumauer
Linked Data principles have
surfaced in many places
across the web
Facebook Open Graph/ Entity Graph
<meta property="og:title" content="Sphero - Star Wars Episode VII BB-8 Droid - White">
<meta property="og:type" content="product">
<meta property="og:url" content="/site/sphero-star-wars-episode-vii-bb-8-droid-white/4316601">
<meta property="og:image" content="http://pisces.bbystatic.com/image2/BestBuy_US/images/products/4316/">
<meta property="og:site_name" content="Best Buy">
<meta property="og:description" content="Star Wars Episode VII BB-8 Droid">
Twitter Cards
<meta name="twitter:card" content="product">
<meta name="twitter:title" content="Pusheen the Limit Tee">
<meta name="twitter:label1" content="PRICE">
<meta name="twitter:data1" content="$7.99">
<meta name="twitter:image:src"
content="http://productshots2.modcloth.net/productshots/0120/6748/1d9bbcd088d86b4db0d35e9027758b04.
?1350070486">
<meta name="twitter:domain" content="ModCloth.com">
schema.org
• Common vocabs and markup that search engines
can understand
• Ease the friction of publishing Linked/ Structured
Data to the web
• Linked, open data as a platform to build cool stuff
on the web, improve user experience through data
• Over 1200 schema objects and counting
Richly Annotated HTML
<div itemscope itemtype="http://data-vocabulary.org/Person">
My name is <span itemprop="name">Jay Myers</span>,
but people call me <span itemprop="nickname">Professor Jaymond Myers</span>.
Here is my homepage:
<a href="http://jaymmyers.tumblr.com" itemprop="url">http://jaymmyers.tumblr.com</a>.
I live in
<span itemprop="address" itemscope
itemtype="http://data-vocabulary.org/Address">
<span itemprop="locality">Minneapolis</span>,
<span itemprop="region">MN</span>
</span>
and work as a <span itemprop="title">Technical Product Manager</span>
at <span itemprop="affiliation">Best Buy, Co., Inc</span>.
</div>
Richly Annotated HTML
<div itemscope itemtype="http://data-vocabulary.org/Product">
<span itemprop="brand">ACME</span> <span itemprop="name">Executive
Stapler</span>
<img itemprop="image" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Swingline-stapler.jpg/220px-Swingline-
stapler.jpg" />
<span itemprop="description">Sleeker than ACME's Classic Stapler, the
Executive Stapler is perfect for the business traveler
looking for a compact stapler to staple their papers.
</span>
Category: <span itemprop="category" content="Office Supplies > Tools > Staplers">Staplers</span>
Product #: <span itemprop="identifier" content="mpn:925872">
925872</span>
<span itemprop="review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="rating">4.4</span> stars, based on <span itemprop="count">89
</span> reviews
</span>
<span itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
Regular price: $179.99
<meta itemprop="currency" content="USD" />
$<span itemprop="price">119.99</span>
(Sale ends <time itemprop="priceValidUntil" datetime="2010-11-05">
5 November!</time>)
Available from: <span itemprop="seller">Executive Objects</span>
Condition: <span itemprop="condition" content="used">Previously owned,
in excellent condition</span>
<span itemprop="availability" content="in_stock">In stock! Order now!</span>
</span>
</div>
Yandex Islands
Google Knowledge Graph
Collection of data
sources from
schema.org markup
Google Knowledge Graph
Collection of data
sources from
schema.org markup
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "bestbuy.com"
},
"orderNumber": "1234567890",
"priceCurrency": "USD",
"price": "29.99",
"acceptedOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Vinotemp - Epicureanist 3-in-1 Wine Bottle Stopper"
},
"price": “19.99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
}
},
"url": "https://www.bestbuy.com/orderconf/?orderID=1234567890"
}
</script>
Pinterest Rich Pins
DBPedia < > Best Buy Mashups
Query: “Find me a description of the band Abba from
the web of open
data and an album for sale by them at Best Buy”
Result: ABBA was a Swedish pop/rock group formed
in
Stockholm in 1972, comprising Agnetha Fältskog,
Benny
Andersson, Björn Ulvaeus and Anni-Frid Lyngstad.
AND
Best Buy Sells the CD: ABBAMania: Tribute to ABBA
– Various
DBPedia < > Best Buy Mashups
Query: “Find me music artists from Ireland and album
for sale by them at Best Buy”
Business result: 6% higher purchase conversion
compared to commerce site
Emotional Weather Report POC
SPARQL query of a collection of data sources,
display Best Buy products that match the mood
people are in due to weather/ environment
Data Relationships = Discovery of
New Things
Linked Data Biz Benefits
• New avenues of customer personalization
• Deeper, more relevant and contextual customer
experiences
• Utilize all of your product catalog – the product
“long tail”
Thank you!
@jaymyers
Resources

More Related Content

What's hot

Azure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs SqlAzure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs Sql
Anne Bougie
 
Semantic search
Semantic searchSemantic search
Semantic search
Andreas Blumauer
 
Internet Search Presentation
Internet Search PresentationInternet Search Presentation
Internet Search Presentation
Steve Guinan
 
3 Understanding Search
3 Understanding Search3 Understanding Search
3 Understanding Search
masiclat
 
Google searching techniques
Google searching techniquesGoogle searching techniques
Google searching techniques
abbas mohd
 
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
SciBite Limited
 
Seo; Cutting Through The Noise
Seo; Cutting Through The NoiseSeo; Cutting Through The Noise
Seo; Cutting Through The Noise
Bill Slawski
 
Introduction to Elasticsearch for Business Intelligence and Application Insights
Introduction to Elasticsearch for Business Intelligence and Application InsightsIntroduction to Elasticsearch for Business Intelligence and Application Insights
Introduction to Elasticsearch for Business Intelligence and Application Insights
Data Works MD
 
Finding information on the Web - methodology
Finding information on the Web - methodologyFinding information on the Web - methodology
Finding information on the Web - methodology
Philippe Scheimann
 
Deep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in FusionDeep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in Fusion
Lucidworks
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)
Gerard de Melo
 
google search engine
google search enginegoogle search engine
google search engineway2go
 
Google Search Engine
Google Search EngineGoogle Search Engine
Google Search Engine
guestf460ed0
 
T L W Smart Searching
T L W Smart SearchingT L W Smart Searching
T L W Smart Searching
Pam Krambeck
 
Calais @ the SD Forum
Calais @ the SD ForumCalais @ the SD Forum
Calais @ the SD Forum
Krista Thomas
 
Advertising with Linked Data in Web Content
Advertising with Linked Data in Web ContentAdvertising with Linked Data in Web Content
Advertising with Linked Data in Web Content
Martin Hepp
 
Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich Snippets
Kishan Gor
 
William slawski-google-patents- how-do-they-influence-search
William slawski-google-patents- how-do-they-influence-searchWilliam slawski-google-patents- how-do-they-influence-search
William slawski-google-patents- how-do-they-influence-search
Bill Slawski
 
MongoDB and Hadoop: Driving Business Insights
MongoDB and Hadoop: Driving Business InsightsMongoDB and Hadoop: Driving Business Insights
MongoDB and Hadoop: Driving Business InsightsMongoDB
 
Info Lit Day 2
Info Lit Day 2Info Lit Day 2
Info Lit Day 2amytaylor
 

What's hot (20)

Azure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs SqlAzure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs Sql
 
Semantic search
Semantic searchSemantic search
Semantic search
 
Internet Search Presentation
Internet Search PresentationInternet Search Presentation
Internet Search Presentation
 
3 Understanding Search
3 Understanding Search3 Understanding Search
3 Understanding Search
 
Google searching techniques
Google searching techniquesGoogle searching techniques
Google searching techniques
 
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
SciBite - Role Of Ontologies (Pistoia Alliance Webinar)
 
Seo; Cutting Through The Noise
Seo; Cutting Through The NoiseSeo; Cutting Through The Noise
Seo; Cutting Through The Noise
 
Introduction to Elasticsearch for Business Intelligence and Application Insights
Introduction to Elasticsearch for Business Intelligence and Application InsightsIntroduction to Elasticsearch for Business Intelligence and Application Insights
Introduction to Elasticsearch for Business Intelligence and Application Insights
 
Finding information on the Web - methodology
Finding information on the Web - methodologyFinding information on the Web - methodology
Finding information on the Web - methodology
 
Deep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in FusionDeep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in Fusion
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)
 
google search engine
google search enginegoogle search engine
google search engine
 
Google Search Engine
Google Search EngineGoogle Search Engine
Google Search Engine
 
T L W Smart Searching
T L W Smart SearchingT L W Smart Searching
T L W Smart Searching
 
Calais @ the SD Forum
Calais @ the SD ForumCalais @ the SD Forum
Calais @ the SD Forum
 
Advertising with Linked Data in Web Content
Advertising with Linked Data in Web ContentAdvertising with Linked Data in Web Content
Advertising with Linked Data in Web Content
 
Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich Snippets
 
William slawski-google-patents- how-do-they-influence-search
William slawski-google-patents- how-do-they-influence-searchWilliam slawski-google-patents- how-do-they-influence-search
William slawski-google-patents- how-do-they-influence-search
 
MongoDB and Hadoop: Driving Business Insights
MongoDB and Hadoop: Driving Business InsightsMongoDB and Hadoop: Driving Business Insights
MongoDB and Hadoop: Driving Business Insights
 
Info Lit Day 2
Info Lit Day 2Info Lit Day 2
Info Lit Day 2
 

Similar to Linked Data Presentation at TDWI Mpls

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extendSeek Tan
 
Data Feed SEO for Affiliates by Will Critchlow
Data Feed SEO for Affiliates by Will CritchlowData Feed SEO for Affiliates by Will Critchlow
Data Feed SEO for Affiliates by Will Critchlowauexpo Conference
 
E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 appspresso hands on labNAVER D2
 
E3 appspresso hands on lab
E3 appspresso hands on labE3 appspresso hands on lab
E3 appspresso hands on labNAVER D2
 
YQL: Select * from Internet
YQL: Select * from InternetYQL: Select * from Internet
YQL: Select * from Internet
drgath
 
YQL:: Select * from Internet
YQL:: Select * from InternetYQL:: Select * from Internet
YQL:: Select * from Internetdrgath
 
Hands On Spring Data
Hands On Spring DataHands On Spring Data
Hands On Spring Data
Eric Bottard
 
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
Matt Raible
 
Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"
George Stathis
 
Your Content, Your Search, Your Decision
Your Content, Your Search, Your DecisionYour Content, Your Search, Your Decision
Your Content, Your Search, Your DecisionAgnes Molnar
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSHDinu Suman
 
Advanced Structured Data: Beyond Rich Snippets
Advanced Structured Data: Beyond Rich SnippetsAdvanced Structured Data: Beyond Rich Snippets
Advanced Structured Data: Beyond Rich SnippetsJustin Briggs
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantika
Jure Cuhalev
 
Rails and alternative ORMs
Rails and alternative ORMsRails and alternative ORMs
Rails and alternative ORMs
Jonathan Dahl
 
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Cengage Learning
 
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
Dan Brickley
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference Client
Dallan Quass
 
Linked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve MeyerLinked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve Meyer
WiLS
 
Rapid Prototyping with Solr
Rapid Prototyping with SolrRapid Prototyping with Solr
Rapid Prototyping with SolrErik Hatcher
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
Anchal Thakur
 

Similar to Linked Data Presentation at TDWI Mpls (20)

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
 
Data Feed SEO for Affiliates by Will Critchlow
Data Feed SEO for Affiliates by Will CritchlowData Feed SEO for Affiliates by Will Critchlow
Data Feed SEO for Affiliates by Will Critchlow
 
E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 appspresso hands on lab
 
E3 appspresso hands on lab
E3 appspresso hands on labE3 appspresso hands on lab
E3 appspresso hands on lab
 
YQL: Select * from Internet
YQL: Select * from InternetYQL: Select * from Internet
YQL: Select * from Internet
 
YQL:: Select * from Internet
YQL:: Select * from InternetYQL:: Select * from Internet
YQL:: Select * from Internet
 
Hands On Spring Data
Hands On Spring DataHands On Spring Data
Hands On Spring Data
 
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
#NoXML: Eliminating XML in Spring Projects - SpringOne 2GX 2015
 
Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"Elasticsearch & "PeopleSearch"
Elasticsearch & "PeopleSearch"
 
Your Content, Your Search, Your Decision
Your Content, Your Search, Your DecisionYour Content, Your Search, Your Decision
Your Content, Your Search, Your Decision
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSH
 
Advanced Structured Data: Beyond Rich Snippets
Advanced Structured Data: Beyond Rich SnippetsAdvanced Structured Data: Beyond Rich Snippets
Advanced Structured Data: Beyond Rich Snippets
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantika
 
Rails and alternative ORMs
Rails and alternative ORMsRails and alternative ORMs
Rails and alternative ORMs
 
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
 
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
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference Client
 
Linked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve MeyerLinked Data and Discovery with Steve Meyer
Linked Data and Discovery with Steve Meyer
 
Rapid Prototyping with Solr
Rapid Prototyping with SolrRapid Prototyping with Solr
Rapid Prototyping with Solr
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
 

More from Jay Myers

SMX Advanced Seattle -- Structured Web of Data
SMX Advanced Seattle -- Structured Web of DataSMX Advanced Seattle -- Structured Web of Data
SMX Advanced Seattle -- Structured Web of Data
Jay Myers
 
The Next Web of Linked Data -- University of St Thomas SEIS 708
The Next Web of Linked Data -- University of St Thomas SEIS 708The Next Web of Linked Data -- University of St Thomas SEIS 708
The Next Web of Linked Data -- University of St Thomas SEIS 708
Jay Myers
 
Minnebar9 -- The Next Web of Linked Data
Minnebar9 -- The Next Web of Linked DataMinnebar9 -- The Next Web of Linked Data
Minnebar9 -- The Next Web of Linked Data
Jay Myers
 
The Next Web of Linked Data
The Next Web of Linked DataThe Next Web of Linked Data
The Next Web of Linked Data
Jay Myers
 
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
Jay Myers
 
Better business through linked data
Better business through linked dataBetter business through linked data
Better business through linked data
Jay Myers
 
GS1: Better retailing through linked data
GS1: Better retailing through linked dataGS1: Better retailing through linked data
GS1: Better retailing through linked data
Jay Myers
 
Better Retailing through Linked Data
Better Retailing through Linked DataBetter Retailing through Linked Data
Better Retailing through Linked Data
Jay Myers
 
RDFa -- search engines and beyond!
RDFa -- search engines and beyond!RDFa -- search engines and beyond!
RDFa -- search engines and beyond!Jay Myers
 
Semantic Web Presentation at University of St Thomas,ust seis752
Semantic Web Presentation at University of St Thomas,ust seis752Semantic Web Presentation at University of St Thomas,ust seis752
Semantic Web Presentation at University of St Thomas,ust seis752
Jay Myers
 
The Offspring of SEO and Semantic Web: SEO++
The Offspring of SEO  and Semantic Web: SEO++ The Offspring of SEO  and Semantic Web: SEO++
The Offspring of SEO and Semantic Web: SEO++
Jay Myers
 
Semantic Web and Linked Data at TechMaine Conference
Semantic Web and Linked Data at TechMaine ConferenceSemantic Web and Linked Data at TechMaine Conference
Semantic Web and Linked Data at TechMaine Conference
Jay Myers
 
NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010
Jay Myers
 
Sem web summit boston 2010
Sem web summit boston 2010Sem web summit boston 2010
Sem web summit boston 2010
Jay Myers
 
MIT Sloan Linked Data Ventures - Jay Myers
MIT Sloan Linked Data Ventures  - Jay MyersMIT Sloan Linked Data Ventures  - Jay Myers
MIT Sloan Linked Data Ventures - Jay MyersJay Myers
 
Increasing product and service visibility through front-end semantic web
Increasing product and service visibility through front-end semantic webIncreasing product and service visibility through front-end semantic web
Increasing product and service visibility through front-end semantic webJay Myers
 
SES Chicago "Developments in Information Retrieval on the Web"
SES Chicago "Developments in Information Retrieval on the Web"SES Chicago "Developments in Information Retrieval on the Web"
SES Chicago "Developments in Information Retrieval on the Web"
Jay Myers
 

More from Jay Myers (17)

SMX Advanced Seattle -- Structured Web of Data
SMX Advanced Seattle -- Structured Web of DataSMX Advanced Seattle -- Structured Web of Data
SMX Advanced Seattle -- Structured Web of Data
 
The Next Web of Linked Data -- University of St Thomas SEIS 708
The Next Web of Linked Data -- University of St Thomas SEIS 708The Next Web of Linked Data -- University of St Thomas SEIS 708
The Next Web of Linked Data -- University of St Thomas SEIS 708
 
Minnebar9 -- The Next Web of Linked Data
Minnebar9 -- The Next Web of Linked DataMinnebar9 -- The Next Web of Linked Data
Minnebar9 -- The Next Web of Linked Data
 
The Next Web of Linked Data
The Next Web of Linked DataThe Next Web of Linked Data
The Next Web of Linked Data
 
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
The Web Comes Alive with Data! Schema.org and Structured Data on the Web: Pas...
 
Better business through linked data
Better business through linked dataBetter business through linked data
Better business through linked data
 
GS1: Better retailing through linked data
GS1: Better retailing through linked dataGS1: Better retailing through linked data
GS1: Better retailing through linked data
 
Better Retailing through Linked Data
Better Retailing through Linked DataBetter Retailing through Linked Data
Better Retailing through Linked Data
 
RDFa -- search engines and beyond!
RDFa -- search engines and beyond!RDFa -- search engines and beyond!
RDFa -- search engines and beyond!
 
Semantic Web Presentation at University of St Thomas,ust seis752
Semantic Web Presentation at University of St Thomas,ust seis752Semantic Web Presentation at University of St Thomas,ust seis752
Semantic Web Presentation at University of St Thomas,ust seis752
 
The Offspring of SEO and Semantic Web: SEO++
The Offspring of SEO  and Semantic Web: SEO++ The Offspring of SEO  and Semantic Web: SEO++
The Offspring of SEO and Semantic Web: SEO++
 
Semantic Web and Linked Data at TechMaine Conference
Semantic Web and Linked Data at TechMaine ConferenceSemantic Web and Linked Data at TechMaine Conference
Semantic Web and Linked Data at TechMaine Conference
 
NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010
 
Sem web summit boston 2010
Sem web summit boston 2010Sem web summit boston 2010
Sem web summit boston 2010
 
MIT Sloan Linked Data Ventures - Jay Myers
MIT Sloan Linked Data Ventures  - Jay MyersMIT Sloan Linked Data Ventures  - Jay Myers
MIT Sloan Linked Data Ventures - Jay Myers
 
Increasing product and service visibility through front-end semantic web
Increasing product and service visibility through front-end semantic webIncreasing product and service visibility through front-end semantic web
Increasing product and service visibility through front-end semantic web
 
SES Chicago "Developments in Information Retrieval on the Web"
SES Chicago "Developments in Information Retrieval on the Web"SES Chicago "Developments in Information Retrieval on the Web"
SES Chicago "Developments in Information Retrieval on the Web"
 

Recently uploaded

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 

Recently uploaded (20)

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 

Linked Data Presentation at TDWI Mpls

  • 2. Every day we create 2.5 quintillion bytes of data (equivalent to 3.4 billion HD movies)
  • 4. What if we could use these webs of data as a global DB?
  • 5. Linked Data “A new form of Web content that is meaningful to computers will unleash a revolution of new possibilities” - TBL
  • 6. Linked Data is: A set of standards for publishing and connecting structured data on the web.
  • 7. Linked Data • Built on common web principles: HTTP, URIs, hyperlinks • URIs to identify data entities and relationships between things • Easily combine data sources
  • 8.
  • 9. Built on RDF • “Resource Description Framework” • Model for data exchange on the web • Expresses relationships between things
  • 10. The RDF “Triple” Entity - Attribute - Value or Subject - Predicate - Object
  • 11. Linked Data Vocabularies • Schemas for the web of data • Distributed over the web (via URIs!) • Resolvable on the web for people to discover and learn how to use
  • 12. Popular Open Vocabularies Name URI Description Bio http://purl.org/vocab/bio/ 0.1/ Describes biographical information about people, both living and dead FOAF http://xmlns.com/foaf/0. 1/ “Friend of a Friend”, describes social networks and person relationships FIBO In development “Financial Industry Business Ontology”, common vocabulary for financial terminology Good Relations http://purl.org/goodrelati ons/v1 Annotates product offers and products vCard http://www.w3.org/2006/ vcard/ns# Describes People and Organizations
  • 13. Make Your Own @prefix gsp: <http://gs1.org/ns/product#> . <http://gs1.org/ns/product> a owl:Ontology ; rdfs:label "GS1 Global Structured Commerce Classification Ontology"@en ; rdfs:comment "GS1 Product Ontologies based off structured Commerce Classification work" ; dct:creator [foaf:name "Jay Myers"] . gsp:Product a rdfs:Class, owl:Class ; rdfs:isDefinedBy <http://gs1.org/vocab/product> ; rdfs:label "Product"@en ; rdfs:comment "A GS1 recoginzed product" . gsp:Book a rdfs:Class, owl:Class ; rdfs:isDefinedBy <http://gs1.org/vocab/product> ; rdfs:subClassOf gsp:BooksMusicMovies ; rdfs:label "Book"@en ; rdfs:comment "A product that is classified as a book" . https://github.com/jaymyers/gs1-ontology
  • 14. A Simple Triple <http://jaymyers.com/jay/> foaf:name “Jay Myers”;
  • 15. A Collection of Triples <jay> a foaf:Person; foaf:givenname "Jay"; foaf:family_name "Myers"; foaf:gender "Male"; foaf:phone <tel:6122965836>; foaf:title "Technical Product Manager"; foaf:workplaceHomepage <http://www.bestbuy.com>; foaf:knows <http://davidwormald.com/david/>.
  • 16. Multiple RDF statements (and links!) connect to form graphs of data
  • 18. Let’s query the web of data!SPARQL: SPARQL Protocol and RDF Query Language
  • 19. SELECT Query prefix foaf: <http://xmlns.com/foaf/0.1/> select ?firstname ?lastname ?phonenumber from <http://jaymyers.com/jay/> from <http://davidwormald.com/david/> from <http://arunbatchu.net/arun/> where{ ?person foaf:givenname ?firstname ; foaf:lastname ?lastname ; foaf:phone ?phonenumber . } LIMIT 2 Namespace prefix Three fields Three data sources Specify conditions Return two
  • 20. DBPedia Query PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?name ?person ?artist ?birth WHERE { ?person dbo:birthDate ?birth . ?person foaf:name ?name . ?person dbo:hometown <http://dbpedia.org/resource/Republic_of_Ireland> . ?person rdf:type <http://dbpedia.org/ontology/MusicalArtist> . ?person <http://dbpedia.org/ontology/associatedMusicalArtist> ?artist . } ORDER BY ?name Music artists whose birthplace is Ireland
  • 21. DBPedia Query SELECT distinct ?episode ?chalkboard_gag WHERE { ?episodeno <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:The_Simpsons> . ?episode dbpedia2:blackboard ?chalkboard_gag . } All the phrases Bart Simpson wrote on the school blackboard in the beginning of the Simpsons
  • 22. SPARQL nuggets • With SPARQL you can query knowledge graphs • SPARQL is to the Semantic Web and the Web in general what SQL is to relational databases • SPARQL is a W3C recommendation and is supported by many different database vendors (no vendor lock-in) • With SPARQL you benefit from the potential to make a collection of data sources look and query like one big database • SPARQL is also a standardized update and graph traversal language • SPARQL allows you to explore data • With SPARQL you can define inference rules to gain new information from existing facts “SPARQL is the new King of all Data Scientist’s tools”, Andreas Blumauer
  • 23. Linked Data principles have surfaced in many places across the web
  • 24. Facebook Open Graph/ Entity Graph <meta property="og:title" content="Sphero - Star Wars Episode VII BB-8 Droid - White"> <meta property="og:type" content="product"> <meta property="og:url" content="/site/sphero-star-wars-episode-vii-bb-8-droid-white/4316601"> <meta property="og:image" content="http://pisces.bbystatic.com/image2/BestBuy_US/images/products/4316/"> <meta property="og:site_name" content="Best Buy"> <meta property="og:description" content="Star Wars Episode VII BB-8 Droid">
  • 25. Twitter Cards <meta name="twitter:card" content="product"> <meta name="twitter:title" content="Pusheen the Limit Tee"> <meta name="twitter:label1" content="PRICE"> <meta name="twitter:data1" content="$7.99"> <meta name="twitter:image:src" content="http://productshots2.modcloth.net/productshots/0120/6748/1d9bbcd088d86b4db0d35e9027758b04. ?1350070486"> <meta name="twitter:domain" content="ModCloth.com">
  • 26.
  • 27. schema.org • Common vocabs and markup that search engines can understand • Ease the friction of publishing Linked/ Structured Data to the web • Linked, open data as a platform to build cool stuff on the web, improve user experience through data • Over 1200 schema objects and counting
  • 28. Richly Annotated HTML <div itemscope itemtype="http://data-vocabulary.org/Person"> My name is <span itemprop="name">Jay Myers</span>, but people call me <span itemprop="nickname">Professor Jaymond Myers</span>. Here is my homepage: <a href="http://jaymmyers.tumblr.com" itemprop="url">http://jaymmyers.tumblr.com</a>. I live in <span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address"> <span itemprop="locality">Minneapolis</span>, <span itemprop="region">MN</span> </span> and work as a <span itemprop="title">Technical Product Manager</span> at <span itemprop="affiliation">Best Buy, Co., Inc</span>. </div>
  • 29. Richly Annotated HTML <div itemscope itemtype="http://data-vocabulary.org/Product"> <span itemprop="brand">ACME</span> <span itemprop="name">Executive Stapler</span> <img itemprop="image" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Swingline-stapler.jpg/220px-Swingline- stapler.jpg" /> <span itemprop="description">Sleeker than ACME's Classic Stapler, the Executive Stapler is perfect for the business traveler looking for a compact stapler to staple their papers. </span> Category: <span itemprop="category" content="Office Supplies > Tools > Staplers">Staplers</span> Product #: <span itemprop="identifier" content="mpn:925872"> 925872</span> <span itemprop="review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate"> <span itemprop="rating">4.4</span> stars, based on <span itemprop="count">89 </span> reviews </span> <span itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer"> Regular price: $179.99 <meta itemprop="currency" content="USD" /> $<span itemprop="price">119.99</span> (Sale ends <time itemprop="priceValidUntil" datetime="2010-11-05"> 5 November!</time>) Available from: <span itemprop="seller">Executive Objects</span> Condition: <span itemprop="condition" content="used">Previously owned, in excellent condition</span> <span itemprop="availability" content="in_stock">In stock! Order now!</span> </span> </div>
  • 30.
  • 31.
  • 32.
  • 33.
  • 35. Google Knowledge Graph Collection of data sources from schema.org markup
  • 36. Google Knowledge Graph Collection of data sources from schema.org markup
  • 37. <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Order", "merchant": { "@type": "Organization", "name": "bestbuy.com" }, "orderNumber": "1234567890", "priceCurrency": "USD", "price": "29.99", "acceptedOffer": { "@type": "Offer", "itemOffered": { "@type": "Product", "name": "Vinotemp - Epicureanist 3-in-1 Wine Bottle Stopper" }, "price": “19.99", "priceCurrency": "USD", "eligibleQuantity": { "@type": "QuantitativeValue", "value": "1" } }, "url": "https://www.bestbuy.com/orderconf/?orderID=1234567890" } </script>
  • 39. DBPedia < > Best Buy Mashups Query: “Find me a description of the band Abba from the web of open data and an album for sale by them at Best Buy” Result: ABBA was a Swedish pop/rock group formed in Stockholm in 1972, comprising Agnetha Fältskog, Benny Andersson, Björn Ulvaeus and Anni-Frid Lyngstad. AND Best Buy Sells the CD: ABBAMania: Tribute to ABBA – Various
  • 40. DBPedia < > Best Buy Mashups Query: “Find me music artists from Ireland and album for sale by them at Best Buy” Business result: 6% higher purchase conversion compared to commerce site
  • 41. Emotional Weather Report POC SPARQL query of a collection of data sources, display Best Buy products that match the mood people are in due to weather/ environment
  • 42. Data Relationships = Discovery of New Things
  • 43. Linked Data Biz Benefits • New avenues of customer personalization • Deeper, more relevant and contextual customer experiences • Utilize all of your product catalog – the product “long tail”

Editor's Notes

  1. Comes in different flavors
  2. Thanks!
  3. Thanks!