mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
19 lines
423 B
Plaintext
19 lines
423 B
Plaintext
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
|
|
@prefix acp: <http://www.w3.org/ns/solid/acp#>.
|
|
|
|
<#card>
|
|
a acp:AccessControlResource;
|
|
acp:resource <./README>;
|
|
acp:accessControl <#publicReadAccess>.
|
|
|
|
<#publicReadAccess>
|
|
a acp:AccessControl;
|
|
acp:apply [
|
|
a acp:Policy;
|
|
acp:allow acl:Read;
|
|
acp:anyOf [
|
|
a acp:Matcher;
|
|
acp:agent acp:PublicAgent
|
|
]
|
|
].
|