jsonld-ex/test/data/json-ld.org-test-suite/expand-0078-in.jsonld
2017-03-24 23:08:41 +01:00

30 lines
542 B
Plaintext
Executable file

{
"@context": {
"name": "http://example.com/vocab#name",
"children": { "@reverse": "http://example.com/vocab#parent" },
"pets": { "@reverse": "http://example.com/vocab#owner" }
},
"@id": "#homer",
"name": "Homer",
"children": [
{
"@id": "#bart",
"name": "Bart"
},
{
"@id": "#lisa",
"name": "Lisa"
}
],
"pets": [
{
"@id": "#snowball-ii",
"name": "Snowball II"
},
{
"@id": "#santas-little-helper",
"name": "Santa's Little Helper"
}
]
}