SlideShare ist ein Scribd-Unternehmen logo
1 von 45
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

Weitere ähnliche Inhalte

Was ist angesagt?

Azure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs SqlAzure Database Options - NoSql vs Sql
Azure Database Options - NoSql vs SqlAnne Bougie
 
Internet Search Presentation
Internet Search PresentationInternet Search Presentation
Internet Search PresentationSteve Guinan
 
3 Understanding Search
3 Understanding Search3 Understanding Search
3 Understanding Searchmasiclat
 
Google searching techniques
Google searching techniquesGoogle searching techniques
Google searching techniquesabbas 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 NoiseBill 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 InsightsData Works MD
 
Finding information on the Web - methodology
Finding information on the Web - methodologyFinding information on the Web - methodology
Finding information on the Web - methodologyPhilippe Scheimann
 
Deep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in FusionDeep Dive: Security Trimming in Fusion
Deep Dive: Security Trimming in FusionLucidworks
 
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 Engineguestf460ed0
 
T L W Smart Searching
T L W Smart SearchingT L W Smart Searching
T L W Smart SearchingPam Krambeck
 
Calais @ the SD Forum
Calais @ the SD ForumCalais @ the SD Forum
Calais @ the SD ForumKrista 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 ContentMartin Hepp
 
Introduction to Microdata & Google Rich Snippets
Introduction to Microdata  & Google Rich SnippetsIntroduction to Microdata  & Google Rich Snippets
Introduction to Microdata & Google Rich SnippetsKishan 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-searchBill 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
 

Was ist angesagt? (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
 

Ähnlich wie 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
 
E3 appspresso hands on lab
E3 appspresso hands on labE3 appspresso hands on lab
E3 appspresso hands on labNAVER D2
 
E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 appspresso hands on labNAVER D2
 
YQL: Select * from Internet
YQL: Select * from InternetYQL: Select * from Internet
YQL: Select * from Internetdrgath
 
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 DataEric 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 2015Matt 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 semantikaJure Cuhalev
 
Rails and alternative ORMs
Rails and alternative ORMsRails and alternative ORMs
Rails and alternative ORMsJonathan 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 HTML5Cengage 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 PracticeDan Brickley
 
FamilySearch Reference Client
FamilySearch Reference ClientFamilySearch Reference Client
FamilySearch Reference ClientDallan 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 MeyerWiLS
 
Rapid Prototyping with Solr
Rapid Prototyping with SolrRapid Prototyping with Solr
Rapid Prototyping with SolrErik Hatcher
 

Ähnlich wie 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
 
E3 appspresso hands on lab
E3 appspresso hands on labE3 appspresso hands on lab
E3 appspresso hands on lab
 
E2 appspresso hands on lab
E2 appspresso hands on labE2 appspresso hands on lab
E2 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
 

Mehr von 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 DataJay 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 708Jay 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 DataJay Myers
 
The Next Web of Linked Data
The Next Web of Linked DataThe Next Web of Linked Data
The Next Web of Linked DataJay 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 dataJay Myers
 
GS1: Better retailing through linked data
GS1: Better retailing through linked dataGS1: Better retailing through linked data
GS1: Better retailing through linked dataJay Myers
 
Better Retailing through Linked Data
Better Retailing through Linked DataBetter Retailing through Linked Data
Better Retailing through Linked DataJay 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 seis752Jay 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 ConferenceJay Myers
 
NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010NYC Semantic Web Meetup, Nov 2010
NYC Semantic Web Meetup, Nov 2010Jay Myers
 
Sem web summit boston 2010
Sem web summit boston 2010Sem web summit boston 2010
Sem web summit boston 2010Jay 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
 

Mehr von 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"
 

Kürzlich hochgeladen

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 

Kürzlich hochgeladen (20)

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 

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”

Hinweis der Redaktion

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