Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagenone
titleTurtle
@prefix dc:         <http://purl.org/dc/elements/1.1/> .
@prefix dcterms:    <http://purl.org/dc/terms> .
@prefix ore:        <http://www.openarchives.org/ore/terms/> .
  
<http://localhost:3000/individual/vc155> a ore:Aggregation ;
  dcterms:title        "Engineering Handbooks" ;
  dcterms:description  "Virtual collection of reference works for engineering." ;
  dc:creator           <http://vivo.cornell.edu/individual/individual24416> ;
  ore:aggregates <http://da-rdf.library.cornell.edu/individual/b7141838> ;
  ore:aggregates <http://da-rdf.library.cornell.edu/individual/b4004406> ;
  ore:aggregates <http://da-rdf.library.cornell.edu/individual/b304862> .

 

CHANGE DESCRIPTION OF ENGINEERING HANDBOOK

 

 

 

Code Block
languagenone
titleTurtle using ORE ontology's Aggregation class
@prefix ore:     <http://www.openarchives.org/ore/terms/> .
@prefix iana:    <http://www.iana.org/assignments/relation/> .
 
<http://localhost:3000/individual/vci162> a ore:Proxy ;
  ore:proxyFor <http://da-rdf.library.cornell.edu/individual/b7141838> ;
  ore:proxyIn <http://localhost:3000/individual/vc155> ;
  iana:next <http://localhost:3000/individual/vci163> .
 
<http://localhost:3000/individual/vci163> a ore:Proxy ;
  ore:proxyFor <http://da-rdf.library.cornell.edu/individual/b4004406> ;
  ore:proxyIn <http://localhost:3000/individual/vc155> ;
  iana:previous <http://localhost:3000/individual/vci162> ;
  iana:next <http://localhost:3000/individual/vci164> .
 
<http://localhost:3000/individual/vci164> a ore:Proxy ;
  ore:proxyFor <http://da-rdf.library.cornell.edu/individual/b304862> ;
  ore:proxyIn <http://localhost:3000/individual/vc155> ;
  iana:previous <http://localhost:3000/individual/vci163> .

...