Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@timathom
Last active December 30, 2016 10:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timathom/1f4345ad63e25b0fda1a7f80de6fe0b2 to your computer and use it in GitHub Desktop.
Save timathom/1f4345ad63e25b0fda1a7f80de6fe0b2 to your computer and use it in GitHub Desktop.
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix ex: <http://example.org/> .
@prefix rdau: <http://rdaregistry.info/Elements/u/> .
@prefix bf: <http://id.loc.gov/ontologies/bibframe/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
ex:anno1
a oa:Annotation ;
dcterms:creator <https://library.princeton.edu/tsd/cams/ld4p> ;
oa:hasBody ex:body1 ;
oa:hasTarget [ oa:hasSource ex:pageX ;
oa:hasScope ex:item1
] ;
oa:motivatedBy oa:describing .
ex:body1
a oa:TextualBody , dctypes:Text , ex:AuthorsPresentationInscription ;
rdf:value "pour Jacques Derrida, - en écho reconnaissant pour ton amitié et pour ce que tu nous as donné à lire, depuis si longtemps, LA FRACTURE DE L'HISTOIRE - avec ma vive et fidèle et grande admiration, Michel Haar. Paris, le 24 octobre 1994" ;
dcterms:created "1994-10-24"^^xsd:date ;
dcterms:creator <http://viaf.org/viaf/46762227> ;
dcterms:language "fr" ;
rdau:P60455 <http://viaf.org/viaf/88958529> ;
oa:hasPurpose ex:dedicating .
ex:pageX
a ex:Page ;
dcterms:isPartOf ex:item1 .
ex:item1
a bf:Item ;
bf:itemOf ex:instance1 .
ex:anno2
a oa:Annotation ;
dcterms:creator <https://library.princeton.edu/tsd/cams/ld4p> ;
oa:hasBody ex:body2 ;
oa:hasTarget [ oa:hasSource ex:body1 ;
oa:hasScope ex:anno1 , ex:pageX , ex:item1
] ;
oa:motivatedBy oa:describing .
ex:body2
a ex:Annotation , oa:TextualBody , dctypes:Text ;
rdf:value "hypocrite!" ;
dcterms:creator <http://viaf.org/viaf/88958529> ;
dcterms:language "fr" ;
oa:hasPurpose oa:commenting .
ex:anno3
a oa:Annotation ;
dcterms:creator <https://library.princeton.edu/tsd/cams/ld4p> ;
oa:hasBody [ oa:hasPurpose oa:tagging ;
oa:hasSource <http://sws.geonames.org/2988507/>
] ;
oa:hasTarget [ oa:hasSelector [ a oa:TextQuoteSelector ;
oa:exact "Paris" ;
oa:prefix "Michel Haar. " ;
oa:suffix ", le 24 octobre 1994"
] ;
oa:hasSource ex:body1
] ;
oa:motivatedBy oa:identifying .
ex:work1
a bf:Work ;
owl:sameAs <http://worldcat.org/entity/work/id/810094953> .
ex:instance1
a bf:Instance ;
bf:instanceOf ex:work1 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment