# ACL resource for the /settings/ container
@prefix acl: <http://www.w3.org/ns/auth/acl#>.

<#owner>
    a acl:Authorization;

    acl:agent
        </profile/card#me>;

    # Set the access to the root storage folder itself
    acl:accessTo <./>;

    # All settings resources will be private, by default, unless overridden
    acl:default <./>;

    # The owner has all of the access modes allowed
    acl:mode
        acl:Read, acl:Write, acl:Control.

# Private, no public access modes
