@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 xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix pro: <./>.
@prefix inbox: </inbox/>.
@prefix ipi: </>.
@prefix sos: <http://www.w3.org/ns/sosa/>.
@prefix ssn: <http://www.w3.org/ns/ssn/>.

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

:me
    a schema:Person, sos:FeatureOfInterest, foaf:Person;
    vcard:bday "2010-09-15"^^xsd:date;
    vcard:fn "John Doe";
    vcard:role "Test Account";
    acl:trustedApp
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://*.github.io>
            ],
            [
                acl:mode acl:Append, acl:Read, acl:Write;
                acl:origin <https://openhps.github.io>
            ];
    ldp:inbox inbox:;
    space:preferencesFile </settings/prefs.ttl>;
    space:storage ipi:;
    solid:account ipi:;
    solid:oidcIssuer <https://https://solidweb.org>;
    solid:privateTypeIndex </settings/privateTypeIndex.ttl>;
    solid:publicTypeIndex </settings/publicTypeIndex.ttl>;
    ssn:hasProperty
        </properties/orientation.ttl>, </properties/position.ttl>,
        </properties/velocity.ttl>;
    foaf:name "John Doe".
