Versions Compared

Key

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

...

Table of Contents

Table of Contents

...

Ontologies

The following is a list of all ontologies used by the Triple Examples.

NamePrefixURLDetails
RDF
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
specification
RDF Schemardfs
http://www.w3.org/2000/01/rdf-schema#
specification
Dublin Coredc
http://purl.org/dc/elements/1.1/
specification
Dublin Core Termsdcterms
http://purl.org/dc/terms
specification
Collectionsco
http://purl.org/co
specification
Open Annotationoa
http://www.w3.org/ns/oa
specification

 

Virtual Collections

Virtual Collection's owner

...

Code Block
languagenone
titleTurtle
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#>.
@prefix dc:      <http://purl.org/dc/elements/1.1/>
@prefix dcterms: <http://purl.org/dc/terms>
 
<http://localhost:3000/virtualcollection/changeme:155>
  refsrdfs:label    "My Virtual Collection" ;
  rdfs:comment  "These are resources I am gathering together for personal use." ;
  dc:creator    ??? TODO DEFINE FOAF PERSON AND USE URI HERE ??? .

...

Code Block
languagenone
titleTurtle
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#>.
@prefix dc:      <http://purl.org/dc/elements/1.1/>
@prefix dcterms: <http://purl.org/dc/terms>
@prefix co:      <http://purl.org/co>
 
<http://localhost:3000/virtualcollection/changeme:155> a co:List
  co:size       "1"^^xsd:nonNegativeInteger ;
  co:firstItem  <http://localhost:3000/virtualcollection/item/changeme:156> ;
  co:item       <http://localhost:3000/virtualcollection/item/changeme:156> ;
  co:lastItem   <http://localhost:3000/virtualcollection/item/changeme:156> .
 
<http://localhost:3000/virtualcollection/item/changeme:156> a co:ListItem
  co:index        "1"^^xsd:positiveInteger ;
  co:itemContent  <http://da-rdf.library.cornell.edu/individual/b3652730> .

 

Example 2: A Virtual Collection as a List with multiple ordered Items

...

Code Block
languagenone
titleTurtle
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfsco:      <http://wwwpurl.w3.org/2000/01/rdf-schema#>.
@prefix dc:   org/co>

<http://localhost:3000/virtualcollection/changeme:155> a co:List
  co:size       "4"^^xsd:nonNegativeInteger ;
  co:firstItem  <http://localhost:3000/virtualcollection/item/changeme:156> ;
  co:item       <http://localhost:3000/virtualcollection/item/changeme:156> ;
  co:item       <http://localhost:3000/virtualcollection/item/changeme:157> ;
  co:item       <http://localhost:3000/virtualcollection/item/changeme:158> ;
  co:item       <http://localhost:3000/virtualcollection/item/changeme:159> ;
  co:lastItem   <http://purl.org/dc/elements/1.1/>
@prefix dcterms: <http://purl.org/dc/terms>
@prefix co:      <http://purl.org/co>





localhost:3000/virtualcollection/item/changeme:159> .
 
<http://localhost:3000/virtualcollection/item/changeme:156> a co:ListItem
  co:index        "1"^^xsd:positiveInteger ;
  co:itemContent  <http://da-rdf.library.cornell.edu/individual/b3652730> ;
  co:nextItem     <http://localhost:3000/virtualcollection/item/changeme:157> .

<http://localhost:3000/virtualcollection/item/changeme:157> a co:ListItem
  co:index        "2"^^xsd:positiveInteger ;
  co:itemContent  <http://da-rdf.library.cornell.edu/individual/b3652234> ;
  co:nextItem     <http://localhost:3000/virtualcollection/item/changeme:158> .

<http://localhost:3000/virtualcollection/item/changeme:158> a co:ListItem
  co:index        "3"^^xsd:positiveInteger ;
  co:itemContent  <http://da-rdf.library.cornell.edu/individual/b3652543> ;
  co:nextItem     <http://localhost:3000/virtualcollection/item/changeme:159> .

<http://localhost:3000/virtualcollection/item/changeme:159> a co:ListItem
  co:index        "4"^^xsd:positiveInteger ;
  co:itemContent  <http://da-rdf.library.cornell.edu/individual/b3652884> .

 

Comments

Comments as Free Form Text Annotation

...