@prefix wot: <http://xmlns.com/wot/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rel: <http://purl.org/vocab/relationship/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix : <http://xmlns.com/foaf/0.1/> .
@base <http://marcoko.ch/> .

<index.ttl> a :PersonalProfileDocument ; dc:format "text/turtle" ; rdfs:label "Turtle" .
<index.rdf> a :PersonalProfileDocument ; dc:format "application/rdf+xml" ; rdfs:label "RDF/XML" .

<> a :PersonalProfileDocument ;
    :maker <#i> ;
    dct:hasFormat <index.ttl>, <index.rdf> ;
    :primaryTopic <#i> .

<#i> a :Person ; a wot:User ;
    :name "Marco Koch" ;
    :nick "koma5" ;
    :family_name "Koch" ;
    :givenname "Marco" ;
    :homepage <http://5th.ch/> ;
    :weblog <http://blog.5th.ch/> ;
    :img <https://gravatar.com/avatar/d100e674f71d4661173a8d4cbb65a924?s=300> ;
    :mbox_sha1sum "b18392060e6ff4697d2f79d78a430708e4f5fba1" ;
    wot:hasKey <#gpgkey> ;
    :account <#twitter>, <#irc-freenode>, <#github> ;
    owl:differentFrom <http://dbpedia.org/resource/Marco_Koch> ;
    rel:wouldLikeToKnow <http://www.w3.org/People/Berners-Lee/card#i> ;
    owl:sameAs <http://5th.ch/~marco/foaf#me> ;
    rdfs:seeAlso <http://5th.ch/~marco/foaf> ;
    rdfs:seeAlso <http://marcoko.ch/likes> .

<#twitter> a :OnlineAccount ;
    :accountServiceHomepage <http://twitter.com/>;
    :accountName "koma5" ;
    :accountProfilePage <http://twitter.com/koma5> . # this property is not in foaf specs

<#github> a :OnlineAccount ;
    :accountServiceHomepage <https://github.com/>;
    :accountName "koma5" ;
    :accountProfilePage <https://github.com/koma5> . # this property is not in foaf specs

<#irc-freenode> a :OnlineAccount ;
    :accountServiceHomepage <http://freenode.net/>;
    :accountName "koma5" .

<#gpgkey> a wot:PubKey ;
    rdfs:label "GPG/PGP Key" ;
    wot:pubkeyAddress <http://files.5th.ch/pgp_marco_koch.txt>;
    wot:pubkeyAddress <https://pgp.mit.edu/pks/lookup?op=get&search=0xAD344CFB6AAC30F09626F4915A2482053E053997>;
    wot:pubkeyAddress <http://keys.gnupg.net/pks/lookup?op=get&search=0xAD344CFB6AAC30F09626F4915A2482053E053997>;
    wot:fingerprint "AD344CFB6AAC30F09626F4915A2482053E053997";
    wot:hex_id "3E053997";
    wot:length 4096 .