@prefix : <#>.
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@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 pod: </>.
@prefix inbox: </inbox/>.
@prefix pro: <./>.

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

:me
    a schema:Project, vcard:Organization, foaf:Project;
    vcard:fn "PodOS";
    vcard:hasPhoto <logo.svg>;
    vcard:note "An operating system for your personal online datastore";
    acl:trustedApp
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <http://localhost:3005>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <http://localhost:4500>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://pod-os-browser.netlify.app>
            ];
    ldp:inbox inbox:;
    space:preferencesFile </settings/prefs.ttl>;
    space:storage pod:;
    solid:account pod:;
    solid:oidcIssuer <https://solidcommunity.net/>;
    solid:privateTypeIndex </settings/privateTypeIndex.ttl>;
    solid:publicTypeIndex </settings/publicTypeIndex.ttl>;
    foaf:name "PodOS".
