@prefix : <#>.
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix schema: <http://schema.org/>.
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix space: <http://www.w3.org/ns/pim/space#>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix pro: <./>.
@prefix set: </settings/>.

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

:me
    a schema:Person, foaf:Person;
    vcard:bday "2023-02-18Z"^^xsd:date;
    vcard:fn "testsdfsdfsdf";
    acl:trustedApp
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <http://localhost:3000>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <http://localhost:8080>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://penny.vincenttunru.com>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://podpro.dev>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://umai.noeldemartin.com>
            ];
    space:preferencesFile </Settings/Preferences.ttl>;
    solid:oidcIssuer <https://solidcommunity.net:8443>;
    #solid:privateTypeIndex set:privateTypeIndex;
    solid:privateTypeIndex <https://dietercasier.solidcommunity.net/settings/privateTypeIndex.ttl> ;
    solid:publicTypeIndex <publicTypeIndex.ttl>.
