@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#>.

<>
    a foaf:PersonalProfileDocument ;
    foaf:maker <https://yochaiglik.solidweb.org/profile/card#me> ;
    foaf:primaryTopic <https://yochaiglik.solidweb.org/profile/card#me> .

<https://yochaiglik.solidweb.org/profile/card#me>
    a foaf:Person ;
    a schema:Person ;

    foaf:name "Yochai Glik" ;

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


    ldp:inbox </inbox/> ;

    pim:preferencesFile </settings/prefs.ttl> ;  # private settings/preferences
    solid:publicTypeIndex </settings/publicTypeIndex.ttl> ;
    solid:privateTypeIndex </settings/privateTypeIndex.ttl> .
