Harry Potter in FRBR

Over on the FRBR blog, William Denton had produced a FRBR-ised version of that fine literary work Harry Potter and the Goblet of Fire. At last a FRBR example that I can identify with! It's quite a detailed example and I thought I'd have a go at representing it in RDF using the FRBR schema Richard and I developed last year.

Some points to note in my interpretation:

  • I chose to use a mixture of successorOf and successor to describe the relationship of the book to others in the series. For consistency I perhaps could have described each work individually and just used the successor property. This would be closer to the pattern suggested by Dan Connolly. However, I wanted to show the RDF data in approximately the same order as William's original example, so having the inverse properties helped with clarity.
  • I chose to make the audio versions expressions of the work although the placement of them in the original example implied that they were related to the written expression. This kind of thing is still the subject of debate in FRBR circles. Perhaps I could have related them to the written expression like the translations, but I'm not entirely sure which FRBR relationship to use, perhaps transformation?
  • In keeping with the usual FRBR practice I made the movie and game versions of the book separate works since they involve new creative input.

When reading this, it's helpful to have the original example open in another window.

@prefix frbr: <http://vocab.org/frbr/core#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

_:hpgf a frbr:Work ; dc:title "Harry Potter and the Goblet of Fire"@en ; dct:abstract """Fourteen-year-old Harry Potter joins the Weasleys at the Quidditch World Cup, then enters his fourth year at Hogwarts Academy where he is mysteriously entered in an unusual contest that challenges his wizarding skills, friendships and character, amid signs that an old enemy is growing stronger."""@en ;

frbr:creator _:jk ;

frbr:successorOf [ a frbr:Work ; dc:title "Harry Potter and the Prisoner of Azkaban"@en ; frbr:creator _:jk ; frbr:successorOf [ a frbr:Work ; dc:title "Harry Potter and the Chamber of Secrets"@en ; frbr:creator _:jk ; frbr:successorOf [ a frbr:Work ; dc:title "Harry Potter and the Philosopher’s Stone"@en ; frbr:creator _:jk ; ] ] ] ;

frbr:successor [ a frbr:Work ; dc:title "Harry Potter and the Order of the Phoenix"@en ; frbr:creator _:jk ; frbr:successor [ a frbr:Work ; dc:title "Harry Potter and the Half-Blood Prince"@en ; frbr:creator _:jk ; frbr:successor [ a frbr:Work ; rdfs:label "Untitled seventh volume"@en ; frbr:creator _:jk ;

  ]
]

] ;

frbr:adaption [ a frbr:Work ; dc:title "Harry Potter and the Goblet of Fire"@en ; rdfs:label "The movie version" ; ] ;

frbr:adaption [ a frbr:Work ; dc:title "Harry Potter and the Goblet of Fire"@en ; rdfs:label "The game version" ; ] ;

frbr:realization [ a frbr:Expression ; rdfs:label "Original text" ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Bloomsbury (UK) hardcover" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Bloomsbury (UK) paperback" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Bloomsbury (UK) paperback (adult cover)" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Scholastic (US) hardcover" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Raincoast (Canada) hardcover" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Raincoast (Canada) paperback" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Penguin (Canada) paperback (adult cover)" ; ] ;

frbr:translation [
  a frbr:Expression ;
  rdfs:label &quot;Arabic translation&quot; ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Hardcover&quot; ;
  ] ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Softcover&quot; ;
  ] ;
] ;

frbr:translation [
  a frbr:Expression ;
  rdfs:label &quot;Finnish translation&quot; ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Hardcover&quot; ;
  ] ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Softcover&quot; ;
  ] ;
] ;

frbr:translation [
  a frbr:Expression ;
  rdfs:label &quot;Italian translation&quot; ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Hardcover&quot; ;
  ] ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Softcover&quot; ;
  ] ;
] ;

frbr:translation [
  a frbr:Expression ;
  rdfs:label &quot;Spanish translation&quot; ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Hardcover&quot; ;
  ] ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Softcover&quot; ;
  ] ;
] ;

frbr:translation [
  a frbr:Expression ;
  rdfs:label &quot;Wolof translation&quot; ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Hardcover&quot; ;
  ] ;
  frbr:embodiment [
    a frbr:Manifestation ;
    rdfs:label &quot;Softcover&quot; ;
  ]
]

] ;

frbr:realization [ a frbr:Expression ; rdfs:label "Jim Dale’s unabridged reading" ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Listening Libary: 17 CDs" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "Listening Libary: 12 cassettes" ; ] ; ] ;

frbr:realization [ a frbr:Expression ; rdfs:label "Stephen Fry’s unabridged reading" ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "BBC Audiobooks: 18 CDs" ; ] ; frbr:embodiment [ a frbr:Manifestation ; rdfs:label "BBC Audiobooks: 14 cassettes" ; ] ; ] ;

frbr:subject [ a frbr:Subject ; rdfs:label "Wizards – Fiction" ; ] ;

frbr:subject [ a frbr:Subject ; rdfs:label "Magic – Fiction" ; ] ;

frbr:subject [ a frbr:Subject ; rdfs:label "Schools – Fiction" ; ] ;

frbr:subject [ a frbr:Subject ; rdfs:label "Harry Potter – Fictional character" ; ] ;

frbr:relatedEndeavour [ a frbr:Work ; dc:title "Quidditch Through the Ages"@en ; frbr:creator [ a foaf:Person ; foaf:name "Kennilworthy Whisp" ; ] ; ] ;

frbr:relatedEndeavour [ a frbr:Work ; dc:title "Fantastic Beasts and Where to Find Them"@en ; frbr:creator [ a foaf:Person ; foaf:name "Newt Scamander" ; ] ; ] ;

frbr:relatedEndeavour [ a frbr:Work ; dc:title "The Sorcerer’s Companion: A Guide to the Magical World of Harry Potter"@en ; frbr:creator [ a foaf:Person ; foaf:name "Allan Zola Kronzek" ; ] ; frbr:creator [ a foaf:Person ; foaf:name "Elizabeth Kronzek" ; ] ; ] .

_:jk a foaf:Person ; foaf:name "J.K. Rowling" ;

Technorati Tags: ,

Permalink: http://blog.iandavis.com/2006/06/harry-potter-in-frbr/

Other posts tagged as frbr, harrypotter, rdf, technology

Earlier Posts