@prefix : <#>.
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix pim: <http://www.w3.org/ns/pim/space#>.
@prefix schema: <http://schema.org/>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@prefix pro: <./>.
@prefix n: <http://www.w3.org/2006/vcard/ns#>.
@prefix inbox: </inbox/>.
@prefix lec: </>.
@prefix n0: <http://www.w3.org/ns/auth/acl#>.

pro:card a foaf:PersonalProfileDocument; foaf:maker :me; foaf:primaryTopic :me.

:me
    a schema:Person, foaf:Person;
    n:fn "Jens";
    n:note "A note in the profile.";
    n:organization-name "WWU";
    n:role "Lecturer";
    n0:trustedApp
            [
                n0:mode n0:Append, n0:Read, n0:Write;
                n0:origin <https://solid.github.io>
            ],
        [ n0:mode n0:Read; n0:origin <http://localhost:8080> ],
        [ n0:mode n0:Read; n0:origin <https://ohmypod.netlify.app> ];
    ldp:inbox inbox:;
    pim:preferencesFile </settings/prefs.ttl>;
    pim:storage lec:;
    solid:account lec:;
    solid:privateTypeIndex </settings/privateTypeIndex.ttl>;
    solid:publicTypeIndex </settings/publicTypeIndex.ttl>;
    foaf:name "Jens".

<#me> <http://www.w3.org/ns/solid/terms#oidcIssuer> <https://solidcommunity.net/>. # Automatically added for Solid 0.9 compatibility
