blob: 11dd58c266a66db5d8010b4073b7321da3c893e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"@context": {
"@version": 1.1,
"@base": "http://example.com/",
"@vocab": "http://example.com/",
"author": {"@type": "@vocab", "@container": "@index", "@index": "prop"},
"prop": {"@type": "@id"}
},
"@id": "article",
"author": {
"regular": {"@id": "person/1", "prop": "foo"},
"guest": [
{"@id": "person/2", "prop": "foo"},
{"@id": "person/3", "prop": "foo"}
]
}
}
|