Zirkelbezüge in JSON-LD
Gunnar Bittersmann
- json-ld
Wie gibt man Zirkelbezüge in JSON-LD an? Ist das richtig so?
{
"@context": {
"@vocab": "http://xmlns.com/foaf/0.1/"
},
"@type": "Group",
"name": "crew of the USS Enterprise",
"member": [
{
"@id": "http://starfleet.example/ncc1701/crew/kirk",
"@type": "Person",
"name": "James T. Kirk",
"knows": [
{ "@id": "http://starfleet.example/ncc1701/crew/spock" },
{ "@id": "http://starfleet.example/ncc1701/crew/mccoy" }
]
},
{
"@id": "http://starfleet.example/ncc1701/crew/spock",
"@type": "Person",
"name": "Spock",
"knows": [
{ "@id": "http://starfleet.example/ncc1701/crew/kirk" },
{ "@id": "http://starfleet.example/ncc1701/crew/mccoy" }
]
},
{
"@id": "http://starfleet.example/ncc1701/crew/mccoy",
"@type": "Person",
"title": "Dr.",
"name": "Leonard McCoy",
"nick": "Bones",
"knows": [
{ "@id": "http://starfleet.example/ncc1701/crew/kirk" },
{ "@id": "http://starfleet.example/ncc1701/crew/spock" }
]
}
]
}
😷 LLAP
Hallo,
Wie gibt man Zirkelbezüge in JSON-LD an? Ist das richtig so?
ich habe keine Ahnung - aber ... bist du mit der Frage vielleicht im falschen Forum gelandet?
Live long and pros healthy,
Martin
@@Der Martin
bist du mit der Frage vielleicht im falschen Forum gelandet?
Ähm ja, war ich. Danke.
Kann natürlich immer noch sein, dass ich mit dieser Frage im SELFHTML-Forum falsch bin; aber vielleicht weiß das ja doch jemand hier.
😷 LLAP
Hallo,
Wie gibt man Zirkelbezüge in JSON-LD an? Ist das richtig so?
Das sieht aus, als ob es so funktionieren könnte.
Mich interessiert aber, wie man effektiv Zirkelbezüge verhindert. Wie geht man da vor?
Bei „knows“ sind sie offensichtlich erlaubt, aber bei „isChildOf“, o.Ä. müsste man ja die ganze Hierarchie prüfen…
Gruß
Kalk