我正在尝试创建一个框架以将每个子节点包含在数组中,因此 Detail(请参见示例)必须包含其自身内的所有其他节点。
这是我在扩展 JSON-LD 中使用的数据示例:
[
{
"@id": "A",
"http://ontology.ayvu.net/#Person": [
{
"@value": "101023",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
}
],
"http://ontology.ayvu.net/#Detail": [
{
"@id": "_:g70157685738360"
},
{
"@id": "_:g70157685722960"
}
]
},
{
"@id": "_:g70157685722960",
"http://ontology.ayvu.net/#Deuda": [
{
"@value": "OFICINA"
}
],
"http://ontology.ayvu.net/#Detalle": [
{
"@value": "100"
"@type": "http://www.w3.org/2001/XMLSchema#decimal"
}
]
},
{
"@id": "_:g70157685738360",
"http://ontology.ayvu.net/#Deuda": [
{
"@value": "3573.04",
"@type": "http://www.w3.org/2001/XMLSchema#decimal"
}
],
"http://ontology.ayvu.net/#Detalle": [
{
"@value": "AUTOMOTORES"
}
]
}
]