Skip to content

Instantly share code, notes, and snippets.

@niklasl
Created July 16, 2013 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niklasl/6008276 to your computer and use it in GitHub Desktop.
Save niklasl/6008276 to your computer and use it in GitHub Desktop.
Using the Dublin Core terms isFormatOf and isVersionOf to interlink some SchemaBibEx examples
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix pto: <http://www.productontology.org/id/> .
@prefix : <http://schema.org/> .
## Altered parts of <http://www.oclc.org/content/dam/research/publications/library/2013/2013-05.pdf> ##
<http://herbert.example/4> a :Book ;
:about <http://id.worldcat.org/fast/899474> ;
:author <http://viaf.org/viaf/5908379> ;
:genre "Fiction" ;
:copyrightYear "1965" ;
:name "Dune" .
<http://herbert.example/6> a :Book, :ProductModel, pto:Hardcover ;
dc:isFormatOf <http://herbert.example/4> ;
:datePublished "1965" ;
:isbn "0801950775" .
<http://herbert.example/7> a :Book, :IndividualProduct, pto:Hardcover ;
:model <http://herbert.example/6> ;
:offer [ a :Offer; :inventoryLevel 1 ] ;
:itemCondition :DamagedCondition ;
:serialNumber "barcode:71176" .
<http://herbert.example/3> a :Movie ;
dc:isVersionOf <http://herbert.example/4> ;
:about <http://id.worldcat.org/fast/899474> ;
:director <http://viaf.org/viaf/164455045> ;
:copyrightYear "2001" ;
:name "Dune" .
<http://herbert.example/5> a :Book, :ProductModel, pto:DVD ;
dc:isFormatOf <http://herbert.example/3> ;
:datePublished "2001" ;
:productID "upc:012236126297" .
<http://id.worldcat.org/fast/899474> a skos:Concept ;
owl:sameAs <http://id.loc.gov/authorities/subjects/sh92003142> ;
:name "Dune (Imaginary place)" .
<http://viaf.org/viaf/164455045> a :Person ;
:name "Lynch, David" .
<http://viaf.org/viaf/5908379> a :Person ;
:name "Herbert, Frank" .
<http://id.loc.gov/authorities/names/n80044450> a skos:Concept;
foaf:focus <http://viaf.org/viaf/5908379> .
## Altered <http://www.w3.org/community/schemabibex/wiki/CreativeWork_Relationships> ##
<http://exampleworks.org/work/12345> a :CreativeWork;
:name "War and Peace";
:about <http://id.loc.gov/authorities/names/n79054933>;
:author <http://viaf.org/viaf/96987389>;
:author [ a :Person; :name "Tolstoy, Leo, graf, 1828-1910."];
:inLanguage "en";
:genre "History";
:genre "Fiction";
:description "An epic novel featuring the Russian role in the Napoleonic wars and providing a complex panorama of the life of the time." .
dc:hasFormat <http://www.worldcat.org/oclc/620344>;
dc:hasFormat <http://www.worldcat.org/oclc/38264520>;
dc:hasVersion <http://www.worldcat.org/oclc/51226025> .
<http://www.worldcat.org/oclc/620344> a :Book;
:name "War and Peace";
:about <http://id.loc.gov/authorities/names/n79054933>;
:author <http://viaf.org/viaf/96987389>;
:author [ a :Person; :name "Tolstoy, Leo, graf, 1828-1910."];
:inLanguage "en";
:genre "History";
:genre "Fiction";
:description "An epic novel featuring the Russian role in the Napoleonic wars and providing a complex panorama of the life of the time.";
dc:isFormatOf <http://exampleworks.org/work/12345> .
<http://www.worldcat.org/oclc/38264520> a :Book, pto:Audiobook, pto:Compact_Cassette;
:isbn "9780553479430";
:isbn "0553479431";
:name "War and Peace";
:about <http://id.loc.gov/authorities/names/n79054933>;
:author <http://viaf.org/viaf/96987389>;
:author [ a :Person; :name "Tolstoy, Leo, graf, 1828-1910."];
:inLanguage "en";
:genre "History";
:genre "Fiction";
:description "An epic novel featuring the Russian role in the Napoleonic wars and providing a complex panorama of the life of the time.";
dc:isFormatOf <http://exampleworks.org/work/12345> .
<http://www.worldcat.org/oclc/51226025> a :Movie;
:name "War and Peace";
:about <http://id.loc.gov/authorities/names/n79054933>;
:contributor <http://viaf.org/viaf/96987389>;
:contributor [ a :Person; :name "Tolstoy, Leo, graf, 1828-1910."];
:inLanguage "en";
:genre "History";
:genre "War Films";
:genre "Feature Films";
dc:isVersionOf <http://exampleworks.org/work/12345>.
## Altered <http://www.w3.org/community/schemabibex/wiki/CommonEndeavor> ##
[] a :Book;
:author <http://en.wikipedia.org/wiki/Mark_Twain>;
dc:hasFormat <http://example.com/4321>;
dc:hasVersion <http://www.imdb.com/title/tt0029844/>;
:datePublished "1991-05-01";
:inLanguage "English";
:isbn "0316769487";
:name "The adventures of Tom Sawyer";
:numberOfPages "224";
:offers [ a :Offer;
:availability :notCheckedOut];
:publisher "Little, Brown, and Company" .
## Altered <http://www.w3.org/community/schemabibex/wiki/Content-Carrier> ##
</work/dune> a :Book;
:name "Dune";
:author <http://viaf.org/viaf/59083797> .
</isbn/1427201439> a :Book, pto:Audiobook, pto:Compact_Disk;
#:name "Dune";
#:author <http://viaf.org/viaf/59083797>;
:isbn "1427201439";
dc:isFormatOf </work/dune> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment