@prefix : <#>.
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix c: <https://tim.localhost:7777/profile/card#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.

:owner
    a acl:Authorization;
    acl:accessTo <./> ;
    acl:agent c:me;
    acl:default <./> ;
    acl:mode acl:Control, acl:Read, acl:Write.
:public
    a acl:Authorization;
    acl:agentClass foaf:Agent;
    acl:accessTo <./> ;
    acl:default <./> ;
    acl:mode acl:Read.
:folks
    a acl:Authorization;
    acl:accessTo <./> ;
    acl:agentGroup <group-listing.ttl#us>;
    acl:default <./> ;
    acl:mode acl:Read, acl:Write.
#:errors
#    a acl:Authorization;
#    acl:accessTo <some-other-file.txt>;
#    acl:agentGroup <group-listing-error.ttl#folks>;
#    acl:mode acl:Read, acl:Write.
