Skip to content

Instantly share code, notes, and snippets.

@jaxoncreed
Created March 24, 2023 16:11
Show Gist options
  • Save jaxoncreed/bcc0c04426b9cb4e35dcee3e08aba9f1 to your computer and use it in GitHub Desktop.
Save jaxoncreed/bcc0c04426b9cb4e35dcee3e08aba9f1 to your computer and use it in GitHub Desktop.
Profile Turtle
@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://jackson.inrupt.net/profile/card#me> ;
foaf:primaryTopic <https://jackson.inrupt.net/profile/card#me> .
<https://jackson.inrupt.net/profile/card#me>
a foaf:Person ;
a schema:Person ;
foaf:name "Jackson" ;
solid:account </> ; # link to the account uri
pim:storage </> ; # root storage
ldp:inbox </inbox/> ;
pim:preferencesFile </settings/prefs.ttl> ; # private settings/preferences
solid:publicTypeIndex </settings/publicTypeIndex.ttl> ;
solid:privateTypeIndex </settings/privateTypeIndex.ttl> .
:me <http://www.w3.org/ns/solid/terms#oidcIssuer> <https://inrupt.net>. # Automatically added for Solid 0.9 compatibility
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment