## Exercise 2 ## 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/", "rel": "http://purl.org/vocab/relationship/", "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 'Alice'", "foaf:name": "A Document that describes a Person literally identified as 'Alice'", "foaf:primaryTopic": { "@id": "#alice" } }, { "@id": "#alice", "@type": "foaf:Person", "rel:employedBy": { "@id": "https://medium.com/openlink-software-blog/org.ttl#exampleCars" }, "wdrs:describedby": { "@id": "#" }, "foaf:depiction": { "@id": "http://clipart-library.com/images/kiMb8ggKT.jpg" }, "foaf:knows": { "@id": "#bob" }, "foaf:name": "Alice" } ] } ## JSON-LD End ##