Ci-dessous, une sérialisation du graphe en RDF Turtle. Pour identifier les ressources de manière unique des UUID ont été générés (ici manuellement avec l'outil en ligne UUID Generator.

@prefix abr:   <http://www.artemisbookstore.com/resource/> .
@prefix owl:   <http://www.w3.org/2002/07/owl#> .
@prefix dbr:   <http://dbpedia.org/resource/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix abo:   <http://www.artemisbookstore.com/ontology#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>

####################################################################
# Les livres
####################################################################

abr:9d417be3-f7a0-43a0-b67a-3f8467a10def
        a                  abo:Book ;
        abo:author         abr:b6bdd160-5a86-400c-8ed9-ae2565dca253 ;
        abo:isbn           "978-1-55566-286-8" ;
        abo:pages          "159"^^xsd:integer ;
        dcterms:publisher  abr:1865d379-46cf-4d9b-9c49-386a5c5b4113 ;
        dcterms:title      "Black Sun (Edward Abbey novel)" .

abr:1459edf8-dbc4-461f-abdb-8d7e7005c95a
        a                  abo:Book ;
        abo:author         abr:b6bdd160-5a86-400c-8ed9-ae2565dca253 ;
        abo:isbn           "0-8263-0457-5" ;
        abo:pages          "211"^^xsd:integer ;
        dcterms:publisher  abr:d71c79ef-1476-42b0-a366-0e5be5f7d217 ;
        dcterms:title      "Fire on the Mountain (Abbey novel)" .

####################################################################		
# Les auteurs	
####################################################################

abr:b6bdd160-5a86-400c-8ed9-ae2565dca253
        a               abo:Writer ;
        owl:sameAs      dbr:Edward_Abbey ;
        foaf:givenName  "Edward" ;
        foaf:name       "Edward Abbey" ;
        foaf:surname    "Abbey" .

####################################################################		
# Les éditeurs
####################################################################
	
abr:1865d379-46cf-4d9b-9c49-386a5c5b4113
        a          abo:Publisher ;
        foaf:name  "Simon & Schuster" .