@prefix foaf:   <http://xmlns.com/foaf/0.1/> .
@prefix vcard:  <http://www.w3.org/2006/vcard/ns#> .
@prefix schema: <http://schema.org/> .
@prefix knows:  <https://data.knows.idlab.ugent.be/person/office/#> .

<#me>
    a               foaf:Person ;
    foaf:givenName  "Bryan-Elliott"@en ;
    foaf:familyName "Tam"@en ;
    vcard:title     "PhD Student" ;
    foaf:mbox       <mailto:bryanelliott.tam@ugent.be> ;
    foaf:img        <profile.jpg> ;
    foaf:account    [ a                           knows:GitHubAccount ;
                      foaf:accountName            "constraintAutomaton" ;
                      foaf:accountServiceHomepage <https://github.com/>
                    ] .
