HomePractical SamplesJSON-LD

JSON-LD

{
"@context":{
"dbp":"http://dbpedia.org/resource/",
"foaf": "http://xmlns.com/foaf/0.1/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"schema": "http://schema.org/"
},


"@graph":[
{
"@id":"dbp:James_Hendler",
"@type":"schema:Person",
"schema:name": "James Alexander Hendler",
"foaf:isPrimaryTopicOf": {"@id": "https://en.wikipedia.org/wiki/James_Hendler"},
"schema:knows": "dbp:Dean_Allemang"
},
{
"@id":"dbp:Dean_Allemang",
"@type": "schema:Person",
"schema:name": "Dean Allemang",
"foaf:isPrimaryTopicOf": {"@id": "https://en.wikipedia.org/wiki/Dean_Allemang"},
"schema:knows": "dbp:James_Hendler"
},
{
"@id": "http://www.worldcat.org/oclc/903331545",
"@type": "schema:Book",
"schema:name": "Semantic Web for the Working Ontologist: Effective Modeling in RDFS and OWL",
"schema:keywords":"Semantic Web",
"schema:author":["dbp:Dean_Allemang" , "dbp:James_Hendler"]
}
]

}