28 lines
409 B
Text
28 lines
409 B
Text
|
{
|
||
|
"@context": {
|
||
|
"e": "http://example.org/vocab#",
|
||
|
"e:next": {
|
||
|
"@type": "@id"
|
||
|
},
|
||
|
"e:prev": {
|
||
|
"@type": "@id"
|
||
|
}
|
||
|
},
|
||
|
"@graph": [
|
||
|
{
|
||
|
"@id": "_:b2",
|
||
|
"e:next": "_:b3",
|
||
|
"e:prev": "_:b1"
|
||
|
},
|
||
|
{
|
||
|
"@id": "_:b1",
|
||
|
"e:next": "_:b2",
|
||
|
"e:prev": "_:b3"
|
||
|
},
|
||
|
{
|
||
|
"@id": "_:b3",
|
||
|
"e:next": "_:b1",
|
||
|
"e:prev": "_:b2"
|
||
|
}
|
||
|
]
|
||
|
}
|