## Linked Data using Relative URIs Exercise 1 ## JSON-LD Start ## { "@context": { "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", "foaf": "http://xmlns.com/foaf/0.1/", "dcterms": "http://purl.org/dc/terms/", "gr": "http://purl.org/goodrelations/v1#", "wdrs": "http://www.w3.org/2007/05/powder-s#" }, "@graph": [ { "@id": "#", "@type": "foaf:Document", "dcterms:description": "A collection of RDF sentences that describe a Person literally identified (or labeled) as 'Bob'", "foaf:name": "A Document that describes a Person literally identified as 'Bob'", "foaf:primaryTopic": { "@id": "#bob" } }, { "@id": "#bob", "@type": "foaf:Person", "gr:seeks": { "@id": "#CoolRedCar" }, "wdrs:describedby": { "@id": "#" }, "foaf:depiction": { "@id": "http://www.silhouettegraphics.net/wp-content/uploads/2013/10/young-man-silhouettegraphics-.jpg" }, "foaf:knows": { "@id": "#alice" }, "foaf:name": "Bob" } ] } ## JSON-LD End ##