Difference between revisions of "JSON-LD"

From air
Jump to navigation Jump to search
(Created page with "http://json-ld.org/")
 
 
Line 1: Line 1:
 
http://json-ld.org/
 
http://json-ld.org/
  +
  +
see http://json-ld.org/playground/index.html
  +
  +
<pre>
  +
{
  +
"@context": "http://json-ld.org/contexts/person.jsonld",
  +
"@id": "http://dbpedia.org/resource/John_Lennon",
  +
"name": "John Lennon",
  +
"born": "1940-10-09",
  +
"spouse": "http://dbpedia.org/resource/Cynthia_Lennon"
  +
}
  +
  +
</pre>

Latest revision as of 18:33, 12 November 2014

http://json-ld.org/

see http://json-ld.org/playground/index.html

{
  "@context": "http://json-ld.org/contexts/person.jsonld",
  "@id": "http://dbpedia.org/resource/John_Lennon",
  "name": "John Lennon",
  "born": "1940-10-09",
  "spouse": "http://dbpedia.org/resource/Cynthia_Lennon"
}