Serialisation example

<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:foaf="http://xmlns.com/foaf/0.1/">

  <foaf:Person rdf:about="http://www.example.com/joe#me">
    <foaf:name>Joseph Bloggs</foaf:name>
    <foaf:title>Mr</foaf:title>
    <foaf:nick>Joe</foaf:nick>
    <foaf:homepage rdf:resource="http://example.com/joe/"/>
    <foaf:dateOfBirth rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1980-09-08</foaf:dateOfBirth>
    <foaf:height rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.82</foaf:height>
    <foaf:currentProject>
      <foaf:Project>
        <foaf:name>Joe&#039;s current project</foaf:name>
      </foaf:Project>
    </foaf:currentProject>

  </foaf:Person>

</rdf:RDF>