jsonld-ex/test/data/json-ld.org-test-suite/frame-0005-out.jsonld
2017-03-24 23:08:41 +01:00

22 lines
501 B
Plaintext
Executable file

{
"@context": {
"dc": "http://purl.org/dc/elements/1.1/",
"ex": "http://example.org/vocab#"
},
"@graph": [{
"@id": "http://example.org/test/#library",
"@type": "ex:Library",
"ex:contains": {
"@id": "http://example.org/test#book",
"@type": "ex:Book",
"dc:title": "My Book",
"ex:contains": {
"@id": "http://example.org/test#chapter",
"@type": "ex:Chapter",
"dc:title": "Chapter One",
"ex:null": null
}
}
}]
}