Advertisement
Guest User

frbr in turtle quick example

a guest
May 29th, 2010
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. @prefix frbr: <http://purl.org/vocab/frbr/core#> .
  2. @prefix : <http://example.org/> .
  3. @prefix dct: < http://purl.org/dc/terms/rights> .
  4. @prefix skos: <http://www.w3.org/2004/02/skos/core#> .
  5.  
  6. :i a frbr:Item ;
  7. dct:description "Autographed by author.";
  8. frbr:exemplarOf :m .
  9. :m a frbr:Manifestation ;
  10. dct:date 2001;
  11. dct:publisher "HarperTorch";
  12. frbr:embodimentOf :e .
  13. :e a frbr:Expression ;
  14. dct:date 1987;
  15. dct:language "fr";
  16. frbr:realizationOf :w.
  17. :w a frbr:Work;
  18. dct:title "Mort";
  19. dct:date 1987;
  20. dct:subject <http://id.loc.gov/authorities/sh85047145#concept> .
  21. <http://id.loc.gov/authorities/sh85047145#concept>
  22. skos:prefLabel "Fantasy literature"@en.
  23. :w dct:creator :pratchett.
  24. :pratchett a frbr:Person .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement