SlideShare a Scribd company logo
LINKED DATA 
IN USE
LINKED DATA IN 
globo.com 
Ícaro Medeiros 
icaro.medeiros@gmail.com 
! 
Time de Semântica 
semantica@corp.globo.com 
Front in Bahia 
13/9/2014 
USE 
Schema.org, JSON-LD, and 
hypermedia APIs
WHAT IS LINKED 
DATA?
SEMANTIC WEB 
! 
DONE 
RIGHT
"I have a dream for the web in 
which computers become 
capable of analyzing all the 
data on the web - the content, 
links, and transactions between 
people and computers." 
Tim Berners-Lee
ROBERTO CARLOS GOAL 
AT MARACANÃ
http://www.bbc.co.uk/blogs/legacy/radiolabs/s5/linked-data/s5.html
http://www.bbc.co.uk/blogs/legacy/radiolabs/s5/linked-data/s5.html
Standard Vocabularies 
• Dublin Core: publications 
• FOAF: people 
• SIOC: online communities 
• DBPedia: Wikipedia in triples
Linked Data Principles 
1. Use URIs as names for things 
2. Use HTTP URIs so that people can look up 
those names. 
3. When someone looks up a URI, provide useful 
information, using the standards (RDF*, 
SPARQL) 
4. Include links to other URIs, so that they can 
discover more things.
Or… 
1. Entity identity 
2. Access 
3. Structure 
4. Integration
RDF AND SPARQL
Triple representation 
subject predicate object 
Neymar is a player 
Barcelona is a team 
Neymar plays for Barcelona
<Player> <Time> 
is a is a is a 
plays for 
<Neymar> <Barcelona> <Santos> 
<Partida> <BarcelonaXSantos:02082013> 
is a 
home team away team 
location 
<Camp Nou> 
date 
"2013/08/02"
RDF triples 
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. 
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. 
@prefix foaf: <http://xmlns.com/foaf/0.1/>. 
@prefix dbpedia: <http://dbpedia.org/ontology> 
! 
esportes:Neymar 
rdf:type dbpedia:SoccerPlayer ; 
rdfs:label "Neymar" ; 
foaf:name "Neymar da Silva Santos Júnior" ; 
dbpedia:birthDate "05/02/1992" ; 
owl:sameAs dbpedia:Neymar . 
Linking! 
datasets
LINKED DATASETS
SPARQL query 
Select all instances of 
dbpedia:SoccerPlayer class and its names 
! 
! 
! 
SELECT ?player ?name 
FROM <http://dbpedia.org> 
WHERE { 
?player rdf:type dbpedia:SoccerPlayer ; 
rdfs:label ?name . 
}
• Complexity (ontologies?) 
• NO clear advantage 
• Triplestore databases: immature 
• Missing a killer application 
• Fax problem 
• Slow adoption 
Problems
LINKED DATA 
WITHOUT RDF?
DON’T YOU WORRY 
ABOUT A 
schema.org/Thing
SCHEMA.ORG
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia 2014
RICH SNIPPETS 
GOOGLE NOW 
KNOWLEDGE GRAPH 
CLEAR ADVANTAGE
RICH SNIPPETS 
City 
Date 
Location
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia 2014
GMAIL 
https://developers.google.com/gmail/actions/reference/flight-reservation?hl=pt-BR
GOOGLE NOW
MAPS
SERP
<html 
itemscope 
itemtype="http://schema.org/Event"> 
<head> 
<title itemprop="name"> 
Front in Maceió 
</title> 
crawler! 
saves annotation! 
in KG 
search results! 
enhanced
ONE VOCABULARY 
TO RULE THEM ALL
HOW TO DO IT?
MICRODATA 
<html 
itemscope 
itemtype="http://schema.org/Event"> 
<head> 
<title itemprop="name"> 
Front in Bahia 
</title> 
...
NESTED PROPERTIES 
<html 
itemscope itemtype="http://schema.org/Event"> 
... 
<section itemprop="location" itemscope 
itemtype="http://schema.org/Place"> 
<span itemprop="name">CESMAC</span> 
<span itemprop="address" itemscope 
itemtype="http://schema.org/PostalAddress"> 
<span itemprop="addressLocality"> 
Maceió 
</span> 
...
Schema.org usage 
• Sample 12B pages (Google Index) 
• 6% domains 
• ~21% pages 
• Avg entities/page: 6 
• Avg facts/page: 26 
http://www.slideshare.net/rvguha/sem-tech2014c
JSON-LD
Plain old JSON 
{ 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
}
JSON-LD 
{ 
"@context": "http://schema.org", 
"@type": "MusicEvent", 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
}
Advantages 
• Semantic layer on top of JSON 
• Self-described 
• Can be added to existing APIs 
• JSON is extensively used 
• Data can be anchored in schema.org 
• Easy serialization to RDF
JSON-LD AND 
HYPERMEDIA APIS
GET /events/1 HTTP/1.1 
Host: example.com 
==================================== 
HTTP/1.0 200 OK 
... 
Content-Type: application/json 
Link: <example.com/events/1.jsonld>; 
rel=http://www.w3.org/ns/json-ld#context; 
type=application/ld+json 
! 
{ 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
} 
Client follows link! 
(hypermedia API)
Self-described 
Resource 
{ 
"@context": "http://schema.org", 
"@type": "MusicEvent", 
"@id": "/events/1", 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
}
Resource+links 
{ 
"@context": "http://schema.org", 
"@type": "MusicEvent", 
"@id": "/events/1", 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
"offers": [{ 
"@id": "/events/1/offer/1", 
"@type": "Offer" 
}]} 
Client follows link
JSON-SCHEMA
Schema in different 
resource 
GET /events/1 HTTP/1.1 
Host: example2.com 
==================================== 
HTTP/1.0 200 OK 
… 
Content-Type: application/json; 
profile=/events/1/_schema 
! 
{ 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
} 
Client follows link (hypermedia API)
GET /events/1/_schema HTTP/1.1 
Host: example2.com 
==================================== 
HTTP/1.0 200 OK 
… 
! 
{ 
"title": "Event", 
"type": "object", 
"properties": { 
"name": {"type": "string"}, 
"url": {"type": "url"} 
}, 
"links": { 
"rel": "offers", 
"href": "/events/1/offers" 
} 
} 
Client does not know! 
URLs, just 'rel's
HYPERMEDIA 
APIS
Hypermedia? 
• Don’t remind URLS. Navigate! 
• Decoupling server and client 
• Content negotiation 
• Application treated as State Machine
GET / 
"links": [ 
{ 
"href": “http://example.com/“, 
"rel": "self" 
}, 
{ 
"href": "http://example.com/{resource_id}", 
"rel": "item" 
}, 
{ 
"href": "http://example.com", 
"method": "POST", 
"rel": "create" 
}, 
{ 
"href": "http://example.com/{resource_id}", 
"method": "DELETE", 
"rel": "delete" 
}, 
{ 
"href": "http://example.com/?page=2", 
"method": "GET", 
"rel": "next" 
} 
] 
{ 
"items": [ 
{ 
"title": "News", 
"@id": "http://example.com/news/", 
"resource_id": "news" 
}, 
{ 
"title": "Sports", 
"@id": "http://example.com/sports/", 
"resource_id": "sports" 
} 
]
resource_id:sports 
rel:item 
GET / /sports 
GET
self 
Relations 
/sports/Team/ 
Barcelona 
/sports/ 
Team 
inCollection 
item 
create 
replace delete
JSON-LD IN HTML
JSON-LD annotation 
<script type="application/ld+json"> 
[{ 
"@context": "http://schema.org", 
"@type": "MusicEvent", 
"name": "Keith Urban", 
"url": "http://www.keithurban.net/tour/420", 
"startDate": "2014-09-07", 
"performer": [{ 
"@type": "MusicGroup", 
"name": "Keith Urban", 
"sameAs": "http://www.keithurban.net"}], 
www.keithurban.net/tour 
Linking! 
datasets 
Same! 
vocabulary
"location": { 
"@type": "Place", 
"name": "Sleep Train Amphitheatre", 
"address": { 
"@type": "PostalAddress", 
"addressLocality": "Sacramento", 
"addressState": "CA", 
"addressCountry": "US" }}, 
"offers": [{ 
"@type: "Offer", 
"name": "TICKETS", 
"url": "http://www.keithurban.net/tour/420" 
}]} 
//... 
] 
</script> 
Link is! 
followed! 
by crawler
{ 
"@context": "http://schema.org", 
"@type": "MusicEvent", 
// ... 
"offers": [{ 
"@type": "Offer", 
"name": "General Tickets", 
"price": "40.00", 
"priceCurrency": "USD", 
"availability": "InStock", 
"validFrom": "2014-02-15T10:00", 
"category": "primary", 
"url": "www.axs.com/events/248328/keith-urban-tickets" 
}]} 
keithurban.net/tour/420 
……..
www.axs.com/events/248328/keith-urban-tickets
JSON-LD IN EMAIL
<script type="application/ld+json"> 
{ 
"@context": "http://schema.org", 
"@type": "FlightReservation", 
"reservationNumber": "RXJ34P", 
"reservationStatus": "http://schema.org/Confirmed", 
"underName": { 
"@type": "Person", 
"name": "Eva Green" 
}, 
"reservationFor": { 
"@type": "Flight", 
"flightNumber": "110", 
"airline": { 
"@type": "Airline", 
"name": "United" 
}, 
//... 
</script>
GMAIL 
https://developers.google.com/gmail/actions/reference/flight-reservation?hl=pt-BR
OPEN GRAPH
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia 2014
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia 2014
TOOLS
SCHEMA.ORG
JSON-LD.ORG
g.co/StructuredData
http://www.google.com/webmasters/tools/richsnippets
STRUCTURED DATA 
MARKUP HELPER 
https://www.google.com/webmasters/markup-helper
https://www.google.com/webmasters/markup-tester/
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia 2014
Semantic annotation goes 
a looong way 
• +SEO 
• +Mobile Rich Info 
• Applications we don’t even know yet
github.com/! 
globocom/ 
IWantToWorkAtGloboCom
icaromedeiros.com.br 
• Pelican (Python) 
• Use ReStructuredText (rst) or Markdown 
• Generate static pages 
• Deploy to github pages easily 
• github.com/icaromedeiros/pelican-microdata
.. itemscope:: BusinessEvent 
:tag: p 
! 
Today I have presented a talk 
in :itemprop:`Salvador <location>` 
at :itemprop:`Front in Bahia <name>`.
<p itemscope 
itemtype="http://schema.org/BusinessEvent"> 
Today I have presented a talk 
in <span itemprop="location">Salvador</span> 
at <span itemprop="name">Front in Bahia</span>. 
</p>
globo.com 
Ícaro Medeiros 
icaro.medeiros@gmail.com 
! 
Semantic team 
semantica@corp.globo.com 
slides 
icaromedeiros.com.br 
slideshare.net/icaromedeiros

More Related Content

What's hot (20)

PDF
JSON-LD Update
Gregg Kellogg
 
PDF
03. ElasticSearch : Data In, Data Out
OpenThink Labs
 
PDF
01 ElasticSearch : Getting Started
OpenThink Labs
 
PPT
Advanced Json
guestfd7d7c
 
PDF
Hypermedia In Practice - FamilySearch Developers Conference 2014
Ryan Heaton
 
KEY
YQL:: Select * from Internet
drgath
 
PDF
Semantic Web in the browser. From a blind Web to
Sabin Buraga
 
PDF
Searching the Web of Data (Tutorial)
Gerard de Melo
 
PDF
Awesome Tools 2017
Noel De Martin Fernandez
 
PDF
Semantic Optimization with Structured Data - SMX Munich
Craig Bradford
 
PPTX
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
Rob Ousbey
 
KEY
OSCON 2011 CouchApps
Bradley Holt
 
PPTX
Creating Operational Redundancy for Effective Web Data Mining
Jonathan LeBlanc
 
PPTX
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
Shamod Lacoul
 
PDF
Использование Elasticsearch для организации поиска по сайту
Olga Lavrentieva
 
PPTX
Securing and Personalizing Commerce Using Identity Data Mining
Jonathan LeBlanc
 
PPT
Searching the internet - what patent searchers should know
Eric Sieverts
 
PDF
Introduction to Elasticsearch
Luiz Messias
 
PDF
Data exchange formats
Przemysław Kamiński
 
KEY
Semantic Web: A web that is not the Web
Bruce Esrig
 
JSON-LD Update
Gregg Kellogg
 
03. ElasticSearch : Data In, Data Out
OpenThink Labs
 
01 ElasticSearch : Getting Started
OpenThink Labs
 
Advanced Json
guestfd7d7c
 
Hypermedia In Practice - FamilySearch Developers Conference 2014
Ryan Heaton
 
YQL:: Select * from Internet
drgath
 
Semantic Web in the browser. From a blind Web to
Sabin Buraga
 
Searching the Web of Data (Tutorial)
Gerard de Melo
 
Awesome Tools 2017
Noel De Martin Fernandez
 
Semantic Optimization with Structured Data - SMX Munich
Craig Bradford
 
A Novel Approach to Scraping Websites - Rob Ousbey, MozCon 2020
Rob Ousbey
 
OSCON 2011 CouchApps
Bradley Holt
 
Creating Operational Redundancy for Effective Web Data Mining
Jonathan LeBlanc
 
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
Shamod Lacoul
 
Использование Elasticsearch для организации поиска по сайту
Olga Lavrentieva
 
Securing and Personalizing Commerce Using Identity Data Mining
Jonathan LeBlanc
 
Searching the internet - what patent searchers should know
Eric Sieverts
 
Introduction to Elasticsearch
Luiz Messias
 
Data exchange formats
Przemysław Kamiński
 
Semantic Web: A web that is not the Web
Bruce Esrig
 

Similar to Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia 2014 (20)

PPTX
Hack U Barcelona 2011
Peter Mika
 
PPT
Webofdata
Bill Roberts
 
PPT
Publishing data on the Semantic Web
Peter Mika
 
PPT
Year of the Monkey: Lessons from the first year of SearchMonkey
Peter Mika
 
PPT
Semantic Web Austin Yahoo
Peter Mika
 
PPTX
Madrid Building blocks of Linked Data
Victor de Boer
 
PPTX
Creating Linked Data 2/5 Semtech2011
Juan Sequeda
 
PPTX
A Real-World Implementation of Linked Data
Dimitri van Hees
 
PPT
Linked Data Tutorial
Sören Auer
 
PDF
Structured Data: It's All About the Graph!
Richard Wallis
 
PDF
Structured Data: It's All about the Graph | Richard Wallis, Data Liberate
Click Consult (Part of Ceuta Group)
 
ZIP
SemWeb Fundamentals - Info Linking & Layering in Practice
Dan Brickley
 
PDF
Linked Data Basics
Anja Jentzsch
 
PPTX
APIs and the Semantic Web: publishing information instead of data
Dimitri van Hees
 
ODP
Web of data
Yves Raimond
 
PDF
Culture Geeks Feb talk: Adventures in Linked Data Land
val.cartei
 
ODP
Linked Data
Danny Ayers
 
PDF
Adventures in Linked Data Land (presentation by Richard Light)
jottevanger
 
PDF
Linked Open Data
Laura Hollink
 
PDF
Publishing and Using Linked Data
ostephens
 
Hack U Barcelona 2011
Peter Mika
 
Webofdata
Bill Roberts
 
Publishing data on the Semantic Web
Peter Mika
 
Year of the Monkey: Lessons from the first year of SearchMonkey
Peter Mika
 
Semantic Web Austin Yahoo
Peter Mika
 
Madrid Building blocks of Linked Data
Victor de Boer
 
Creating Linked Data 2/5 Semtech2011
Juan Sequeda
 
A Real-World Implementation of Linked Data
Dimitri van Hees
 
Linked Data Tutorial
Sören Auer
 
Structured Data: It's All About the Graph!
Richard Wallis
 
Structured Data: It's All about the Graph | Richard Wallis, Data Liberate
Click Consult (Part of Ceuta Group)
 
SemWeb Fundamentals - Info Linking & Layering in Practice
Dan Brickley
 
Linked Data Basics
Anja Jentzsch
 
APIs and the Semantic Web: publishing information instead of data
Dimitri van Hees
 
Web of data
Yves Raimond
 
Culture Geeks Feb talk: Adventures in Linked Data Land
val.cartei
 
Linked Data
Danny Ayers
 
Adventures in Linked Data Land (presentation by Richard Light)
jottevanger
 
Linked Open Data
Laura Hollink
 
Publishing and Using Linked Data
ostephens
 
Ad

More from Ícaro Medeiros (15)

PDF
Data Science and Culture
Ícaro Medeiros
 
PDF
Why Python is better for Data Science
Ícaro Medeiros
 
PDF
Statistics: the grammar of Data Science
Ícaro Medeiros
 
PDF
Linked Data, Big Data, and User Science at Globo.com
Ícaro Medeiros
 
PDF
Web Semântica na Globo.com (Novas Mídias UFRJ)
Ícaro Medeiros
 
PDF
Linked data at globo.com - Web of Linked Entities (WoLE 2013) - WWW 2013
Ícaro Medeiros
 
KEY
Engenharia de ontologias
Ícaro Medeiros
 
KEY
Schema.org - HTML semântico - Front in Maceio 2012
Ícaro Medeiros
 
PDF
Ontology matching
Ícaro Medeiros
 
KEY
R2R Framework: Ontology Mapping
Ícaro Medeiros
 
KEY
SameAs Networks and Beyond: Analyzing Deployment Status and Implications of o...
Ícaro Medeiros
 
PPTX
Tag Suggestion using Multiple Sources of Knowledge
Ícaro Medeiros
 
PDF
Expressões regulares no Linux
Ícaro Medeiros
 
PDF
Ontology Learning
Ícaro Medeiros
 
PDF
Tag Suggestion
Ícaro Medeiros
 
Data Science and Culture
Ícaro Medeiros
 
Why Python is better for Data Science
Ícaro Medeiros
 
Statistics: the grammar of Data Science
Ícaro Medeiros
 
Linked Data, Big Data, and User Science at Globo.com
Ícaro Medeiros
 
Web Semântica na Globo.com (Novas Mídias UFRJ)
Ícaro Medeiros
 
Linked data at globo.com - Web of Linked Entities (WoLE 2013) - WWW 2013
Ícaro Medeiros
 
Engenharia de ontologias
Ícaro Medeiros
 
Schema.org - HTML semântico - Front in Maceio 2012
Ícaro Medeiros
 
Ontology matching
Ícaro Medeiros
 
R2R Framework: Ontology Mapping
Ícaro Medeiros
 
SameAs Networks and Beyond: Analyzing Deployment Status and Implications of o...
Ícaro Medeiros
 
Tag Suggestion using Multiple Sources of Knowledge
Ícaro Medeiros
 
Expressões regulares no Linux
Ícaro Medeiros
 
Ontology Learning
Ícaro Medeiros
 
Tag Suggestion
Ícaro Medeiros
 
Ad

Recently uploaded (20)

PPTX
Get Started with Maestro: Agent, Robot, and Human in Action – Session 5 of 5
klpathrudu
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PDF
Dipole Tech Innovations – Global IT Solutions for Business Growth
dipoletechi3
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PPTX
Library_Management_System_PPT111111.pptx
nmtnissancrm
 
PPTX
From spreadsheets and delays to real-time control
SatishKumar2651
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PPTX
BB FlashBack Pro 5.61.0.4843 With Crack Free Download
cracked shares
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PDF
intro_to_cpp_namespace_robotics_corner.pdf
MohamedSaied877003
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PPTX
Build a Custom Agent for Agentic Testing.pptx
klpathrudu
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
UITP Summit Meep Pitch may 2025 MaaS Rebooted
campoamor1
 
PDF
Why is partnering with a SaaS development company crucial for enterprise succ...
Nextbrain Technologies
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
Get Started with Maestro: Agent, Robot, and Human in Action – Session 5 of 5
klpathrudu
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Dipole Tech Innovations – Global IT Solutions for Business Growth
dipoletechi3
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Library_Management_System_PPT111111.pptx
nmtnissancrm
 
From spreadsheets and delays to real-time control
SatishKumar2651
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
BB FlashBack Pro 5.61.0.4843 With Crack Free Download
cracked shares
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
intro_to_cpp_namespace_robotics_corner.pdf
MohamedSaied877003
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Build a Custom Agent for Agentic Testing.pptx
klpathrudu
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
UITP Summit Meep Pitch may 2025 MaaS Rebooted
campoamor1
 
Why is partnering with a SaaS development company crucial for enterprise succ...
Nextbrain Technologies
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 

Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia 2014