JSON-LD
Posted by Bruce Tsai
05/31/2016
JSON-LD 是 JSON for Linked Data,所謂 Linked Data 其實就是語意網的一部分,基本上還是遵照 RDF 架構去設計出來的文件,目前也很多網路服務都支援,像是 Google、Facebook 等等,甚至 Gmail 的一些特殊能力也是透過在信件內插入 JSON-LD 格式的資料才得以實現。另外在搜尋引撆查詢結果優化(SEO)方向,也逐漸的以 Structured Data 來輔助搜尋結果的呈現,JSON-LD 即為其中的一種外嵌式結構化資料。
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "John Doe",
"jobTitle": "Graduate research assistant",
"affiliation": "University of Dreams",
"additionalName": "Johnny",
"url": "http://www.example.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 Peach Drive",
"addressLocality": "Wonderland",
"addressRegion": "Georgia"
}
}
</script>