Skip to content

Linking to IIIF images

Rainer Simon edited this page Sep 18, 2017 · 7 revisions

In case you are serving IIIF images of your collection items, we encourage you to link these into your RDF dataset summary (or gazetteer dump file). The pattern for this was established by Europeana, and was introduced into Pelagios by the ANS and nomisma partner collections.

@prefix edm <http://www.europeana.eu/schemas/edm/> .
@prefix svcs <http://rdfs.org/sioc/services#> .
@doap <http://usefulinc.com/ns/doap#> .

<http://example.org/pelagios/dump.ttl#items/00l> a pelagios:AnnotatedThing ;
  dcterms:title "An example record with a single image"
  foaf:depiction <http://www.example.com/iiif/123456/full/512,/0/default.jpg> ;
  .

<http://www.example.com/iiif/123456/full/512,/0/default.jpg> a edm:WebResource;
  dcterms:isReferencedBy <http://www.example.com/images/iiif/info.json> ;
  svcs:has_service <http://www.example.com/iiif/123456> ;
  .

<http://www.example.com/iiif/123456> a svcs:Service ;
  dcterms:conformsTo <http://iiif.io/api/image> ;
  doap:implements <http://iiif.io/api/image/2/level1.json> ;
  .