mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
23 lines
597 B
Plaintext
23 lines
597 B
Plaintext
# ACR for the WebID profile document
|
|
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
|
|
@prefix acp: <http://www.w3.org/ns/solid/acp#>.
|
|
|
|
# The WebID profile is readable by the public.
|
|
# This is required for discovery and verification,
|
|
# e.g. when checking identity providers.
|
|
<#card>
|
|
a acp:AccessControlResource;
|
|
acp:resource <./card>;
|
|
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
|
|
]
|
|
].
|