File tree Expand file tree Collapse file tree
demo/public/authz-companion-app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
22@prefix foaf: <http://xmlns.com/foaf/0.1/> .
33@prefix solid: <http://www.w3.org/ns/solid/terms#> .
4+ @prefix filters: <http://localhost:3000/catalog/public/filters/> .
5+ @prefix views: <http://localhost:3000/ruben/private/derived/> .
6+ @prefix ruben: <http://localhost:3000/ruben/profile/card#me> .
47
58<> a foaf:PersonalProfileDocument;
6- foaf:maker <http://localhost:3000/ ruben/profile/card#me> ;
7- foaf:primaryTopic <http://localhost:3000/ ruben/profile/card#me> .
9+ foaf:maker ruben: ;
10+ foaf:primaryTopic ruben: .
811
9- <http://localhost:3000/ ruben/profile/card#me> a foaf:Person ;
12+ ruben: a foaf:Person ;
1013 foaf:name " Ruben Verborgh" @en , " Ruben Verborgh" @nl ;
1114 rdfs:label " Ruben Verborgh" @en , " Ruben Verborgh" @nl ;
12- solid:umaServer " http://localhost:4000/uma" ;
13- solid:oidcIssuer <http://localhost:3000/> .
15+ solid:umaServer " http://localhost:4000/uma/" ;
16+ solid:oidcIssuer <http://localhost:3000/> ;
17+ solid:viewIndex <#index> .
18+
19+ <#index> a solid:ViewIndex ;
20+ solid:entry [
21+ solid:filter filters:bday ;
22+ solid:location views:bday
23+ ] ;
24+ solid:entry [
25+ solid:filter filters:age ;
26+ solid:location views:age
27+ ] .
Original file line number Diff line number Diff line change 1+ @prefix ex: <http://example.org/1707120963224#> .
2+ @prefix odrl: <http://www.w3.org/ns/odrl/2/> .
3+
4+ ex:usagePolicy a odrl:Agreement .
5+ ex:usagePolicy odrl:permission ex:permission .
6+ ex:permission a odrl:Permission .
7+ ex:permission odrl:action odrl:read , odrl:modify .
8+ ex:permission odrl:target <http://localhost:3000/ruben/private/derived/age> , <http://localhost:3000/ruben/private/derived/bday> .
9+ ex:permission odrl:assignee <http://localhost:3000/demo/public/bday-app> .
10+ ex:permission odrl:assigner <http://localhost:3000/ruben/profile/card#me> .
You can’t perform that action at this time.
0 commit comments