39 lines
No EOL
924 B
Text
Executable file
39 lines
No EOL
924 B
Text
Executable file
{
|
|
"@context": {
|
|
"dc": "http://purl.org/dc/elements/1.1/",
|
|
"ex": "http://example.org/vocab#",
|
|
"ex:authored": {
|
|
"@type": "@id"
|
|
},
|
|
"ex:contains": {
|
|
"@type": "@id"
|
|
},
|
|
"foaf": "http://xmlns.com/foaf/0.1/",
|
|
"xsd": "http://www.w3.org/2001/XMLSchema#"
|
|
},
|
|
"@graph": [
|
|
{
|
|
"@id": "http://example.org/test#chapter",
|
|
"dc:description": "Fun",
|
|
"dc:title": "Chapter One"
|
|
},
|
|
{
|
|
"@id": "http://example.org/test#jane",
|
|
"ex:authored": "http://example.org/test#chapter",
|
|
"foaf:name": "Jane"
|
|
},
|
|
{
|
|
"@id": "http://example.org/test#john",
|
|
"foaf:name": "John"
|
|
},
|
|
{
|
|
"@id": "http://example.org/test#library",
|
|
"ex:contains": {
|
|
"@id": "http://example.org/test#book",
|
|
"dc:contributor": "Writer",
|
|
"dc:title": "My Book",
|
|
"ex:contains": "http://example.org/test#chapter"
|
|
}
|
|
}
|
|
]
|
|
} |