########### Single-graph example ######### { "@context": "context.jsonld", "@id": "http://example.org/bob#me", "@type": "Person", "born": "1990-07-04", "knows": "http://example.org/alice#me", "interest": { "@id": "http://www.wikidata.org/entity/Q12418", "title": "Mona Lisa", "subject_of": "http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619", "creator": "http://dbpedia.org/resource/Leonardo_da_Vinci" } } ########### context.jsonld ############## { "@context": { "foaf": "http://xmlns.com/foaf/0.1/", "Person": "foaf:Person", "name": "foaf:name", "knows": { "@id": "foaf:knows", "@type": "@id" }, "interest": "foaf:topic_interest", "born": { "@id": "http://schema.org/birthDate", "@type": "http://www.w3.org/2001/XMLSchema#date" }, "dcterms": "http://purl.org/dc/terms/", "title": "dcterms:title", "subject_of": { "@reverse": "dcterms:subject", "@type": "@id" }, "creator": { "@id": "dcterms:creator", "@type": "@id" } } } ########### Multiple-graphs example ######### { "@context": { "foaf": "http://xmlns.com/foaf/0.1/", "schema": "http://schema.org/", "xsd": "http://www.w3.org/2001/XMLSchema#", "dcterms": "http://purl.org/dc/terms/" }, "@graph": [ { "@id": "http://example.org/bob", "dcterms:publisher": { "@id": "http://example.org" }, "dcterms:rights": { "@id": "http://creativecommons.org/licenses/by/3.0/" } "@graph": [ { "@id": "http://example.org/bob#me", "@type": "foaf:Person", "foaf:knows": { "@id": "http://example.org/alice#me" }, "foaf:topic_interest": { "@id": "http://www.wikidata.org/entity/Q12418" }, "schema:birthDate": { "@value": "1990-07-04", "@type": "xsd:date" } } ], }, { "@id": "https://www.wikidata.org/wiki/Special:EntityData/Q12418", "@graph": [ { "@id": "http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619", "dcterms:subject": { "@id": "http://www.wikidata.org/entity/Q12418", "dcterms:title": "Mona Lisa", "dcterms:creator": { "@id": "http://dbpedia.org/resource/Leonardo_da_Vinci" } } } ] } ] }