Serialisation example

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://www.example.com/joe#me>
    a foaf:Person ;
    foaf:name "Joseph Bloggs" ;
    foaf:title "Mr" ;
    foaf:nick "Joe" ;
    foaf:homepage <http://example.com/joe/> ;
    foaf:dateOfBirth "1980-09-08"^^xsd:date ;
    foaf:height 1.82^^xsd:decimal ;
    foaf:currentProject _:genid1 .

_:genid1
    a foaf:Project ;
    foaf:name "Joe's current project" .