diff --git a/source/import_documentation/Solid-introduction.rst b/source/import_documentation/Solid-introduction.rst index 8632e237279d93003b7339c6d8e1319f8cf1791d..259ef109071ec149df5f3146991156531171176d 100644 --- a/source/import_documentation/Solid-introduction.rst +++ b/source/import_documentation/Solid-introduction.rst @@ -178,33 +178,103 @@ Let’s have a look on this part : .. code:: json { - "circles": { - "@id": "https://api.alpha.happy-dev.fr/users/alice/circles/", - "@type": "ldp:Container", - "ldp:contains": [ + "@id": "https://api.community.startinblox.com/users/alice/circles/", + "@type": "ldp:Container", + "ldp:contains": [ + { + "@id": "https://api.community.startinblox.com/circle-members/1/", + "is_admin": true, + "circle": { + "@id": "https://api.community.startinblox.com/circles/1/" + }, + "@type": "hd:circlemember", + "permissions": [ { - "@id": "https://api.alpha.happy-dev.fr/circle-members/23/" + "mode": { + "@type": "view" + } }, { - "@id": "https://api.alpha.happy-dev.fr/circle-members/54/" + "mode": { + "@type": "delete" + } + } + ] + }, + { + "@id": "https://api.community.startinblox.com/circle-members/2/", + "is_admin": true, + "circle": { + "@id": "https://api.community.startinblox.com/circles/2/" + }, + "@type": "hd:circlemember", + "permissions": [ + { + "mode": { + "@type": "view" + } }, { - "@id": "https://api.alpha.happy-dev.fr/circle-members/656/" + "mode": { + "@type": "delete" + } } - ], + ] + }, + { + "@id": "https://api.community.startinblox.com/circle-members/3/", + "is_admin": true, + "circle": { + "@id": "https://api.community.startinblox.com/circles/3/" + }, + "@type": "hd:circlemember", "permissions": [ { "mode": { - "@type": "add" + "@type": "view" } }, + { + "mode": { + "@type": "delete" + } + } + ] + }, + { + "@id": "https://api.community.startinblox.com/circle-members/4/", + "is_admin": true, + "circle": { + "@id": "https://api.community.startinblox.com/circles/4/" + }, + "@type": "hd:circlemember", + "permissions": [ { "mode": { "@type": "view" } + }, + { + "mode": { + "@type": "delete" + } } ] } + ], + "permissions": [ + { + "mode": { + "@type": "add" + } + }, + { + "mode": { + "@type": "view" + } + } + ], + "@context": "https://cdn.happy-dev.fr/owl/hdcontext.jsonld" } In web semantic language, that’s mean :