# ACL resource for the WebID profile document @prefix acl: . @prefix foaf: . # The WebID profile is readable by the public. # This is required for discovery and verification, # e.g. when checking identity providers. <#public> a acl:Authorization; acl:agentClass foaf:Agent; acl:accessTo <./card>; acl:mode acl:Read. # The owner has full access to the profile <#owner> a acl:Authorization; acl:agent <{{webId}}>; acl:accessTo <./card>; acl:mode acl:Read, acl:Write, acl:Control.