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

26 lines
392 B
Plaintext
Executable file

{
"@context": {
"e": "http://example.org/vocab#",
"e:A": {"@type": "@id"},
"e:B": {"@type": "@id"},
"e:next": {"@type": "@id"}
},
"@graph": [
{
"@id": "e:test",
"e:A": "_:b1",
"e:B": "_:b2"
},
{
"@id": "_:b1",
"e:next": "_:b3"
},
{
"@id": "_:b2",
"e:next": "_:b3"
},
{
"@id": "_:b3"
}
]
}