如何在 json-ld 中指定一对多和多对一关系。例如 :
{
"@context" : {
"@vocab" : "http://www.schema.org/",
"@id" : "http://www.example.com/users/Joe",
"name" : "name",
"dob" : "birthDate",
"age" : {
"@id" : "http://www.example.com/users/Joe#age",
"@type" : "Number"
}
"knows" : ["http://www.example.com/users/Jill", "http://www.example.com/users/James"]
},
"name" : "Joe",
"age" : "24",
"dob" : "12-Jun-2013"
}
这不会在 json-ld 操场上解析。在 json-ld 或使用 Hydra 中指定此类关系的有效和最佳方法是什么?