52 lines
1.7 KiB
Turtle
52 lines
1.7 KiB
Turtle
@prefix books: <http://www.semanticWeb.org/sprql-td/> .
|
|
@prefix booksschema: <http://www.example.org/sprql-td/vocabs/> .
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
|
|
@prefix dcterms: <http://purl.org/dc/terms/>.
|
|
|
|
|
|
books:Book1 a booksschema:Book;
|
|
booksschema:hasGenre booksschema:Romance_novel, booksschema:Fiction ;
|
|
dcterms:title "Sauve-Moi"@fr;
|
|
dcterms:creator books:Musso;
|
|
dcterms:date "2013";
|
|
booksschema:hasPrice 8.
|
|
|
|
books:Book5 a booksschema:Book;
|
|
booksschema:hasGenre booksschema:Romance_novel, booksschema:Fiction ;
|
|
dcterms:title "Central Park"@fr;
|
|
dcterms:creator books:Musso;
|
|
dcterms:date "2014";
|
|
booksschema:hasPrice 9.
|
|
|
|
books:Book2 a booksschema:Book;
|
|
booksschema:hasGenre booksschema:Romance_novel, booksschema:Young_adult_fiction ;
|
|
dcterms:title "Nos etoile contraire"@fr, "The Fault in Our Stars"@en;
|
|
dcterms:creator books:Green;
|
|
dcterms:date "2012";
|
|
booksschema:hasPrice 10.
|
|
|
|
books:Book3 a booksschema:Book;
|
|
booksschema:hasGenre booksschema:Romance_novel;
|
|
dcterms:title "Tout le bleu du ciel"@fr;
|
|
dcterms:creator books:DaCosta;
|
|
dcterms:date "2019".
|
|
|
|
books:Book4 a booksschema:Book;
|
|
booksschema:hasGenre booksschema:Youth_comics;
|
|
dcterms:title "5 Monde?"@fr;
|
|
dcterms:date "2017";
|
|
booksschema:hasPrice 20.
|
|
|
|
books:Musso rdf:type foaf:Person;
|
|
foaf:name "Guillaume Musso";
|
|
foaf:age "48" .
|
|
|
|
books:Green rdf:type foaf:Person;
|
|
foaf:name "John Green";
|
|
foaf:age "47" .
|
|
|
|
books:DaCosta rdf:type foaf:Person;
|
|
foaf:name "Melissa Da Costa";
|
|
foaf:age "32" .
|