@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 vcard: <http://www.w3.org/2006/vcard/ns#>.
@prefix pro: <./>.
@prefix do: </>.
@prefix : <#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.


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

:me
    a schema:Person, foaf:Person;
    vcard:bday "2007-09-06"^^xsd:date;
    vcard:fn "TU Chemnitz";
    vcard:hasPhoto <pp.png>;
    vcard:note "Das sind die Notitzen";
    vcard:organization-name "TU Chemnitz";

    solid:account </> ;  # link to the account uri
    pim:storage </> ;    # root storage
    solid:oidcIssuer <https://solid-social.de> ; # identity provider

    ldp:inbox </inbox/> ;

    pim:preferencesFile </settings/prefs.ttl> ;  # private settings/preferences
    solid:publicTypeIndex </settings/publicTypeIndex.ttl> ;
    solid:privateTypeIndex </settings/privateTypeIndex.ttl> ;
    foaf:name "TU Chemnitz" .
