28 lines
731 B
Text
Executable file
28 lines
731 B
Text
Executable file
{
|
|
"@context": {
|
|
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
"knows": "http://xmlns.com/foaf/0.1/knows",
|
|
"name": "http://xmlns.com/foaf/0.1/name",
|
|
"asOf": "http://example.org/asOf"
|
|
},
|
|
"@id": "http://example.org/linked-data-graph",
|
|
"asOf": {"@value": "2012-04-09", "@type": "xsd:date"},
|
|
"@graph":
|
|
[
|
|
{
|
|
"@id": "http://manu.sporny.org/i/public",
|
|
"@type": "foaf:Person",
|
|
"name": "Manu Sporny",
|
|
"knows": "http://greggkellogg.net/foaf#me"
|
|
},
|
|
{
|
|
"@id": "http://greggkellogg.net/foaf#me",
|
|
"@type": "foaf:Person",
|
|
"name": "Gregg Kellogg",
|
|
"knows": "http://manu.sporny.org/i/public"
|
|
},
|
|
{
|
|
"@id": "http://www.markus-lanthaler.com/"
|
|
}
|
|
]
|
|
}
|