1

配列内にすべての子を含めるフレームを作成しようとしているので、詳細 (例を参照) には、他のすべてのノードがそれ自体の中に含まれている必要があります。

これは、拡張された 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"
     }
   ]
 }

]

4

1 に答える 1