arm

Exhibitions

LD4P ArtFrame/Rare Materials Ontology Extension, 2018-03-15

Table of Contents

Overview

Recording the exhibition history of an item is an important use case identified by both the ArtFrame and RareMat groups.

In MARC 21 Bibliographic, information about exhibits is recorded as a text string in the Exhibition note, 585 for works that have been part of that exhibition. If a work has been issued to accompany an exhibit, such as a catalog or promotional products, information about the exhibition is recorded in a general 500 note. In current library cataloging practice, an exhibition, particularly an ongoing one, can be considered a creator of these resources and is coded as 111 (Meeting name).

The current draft of VRA RDF includes a property placeOfExhibition (for example), allowing the cataloger to link the resource to venue or place of exhibition. However, it does not include a class for the exhibition event.

CIDOC-CRM does include a model to describe exhibition information in much detail. However, for consistency, this proposal reuses models from the BIBFRAME ontology as well as classes and properties from other ontologies that have been re-used previously in the ArtFrame/Rare Materials extension, and defines its own terms where these are lacking in the other two sources.

The model covers properties of the exhibition event itself, as well as items included in the exhibition event and the event’s connection to an exhibition catalog. For clarity we use the term “exhibition event” to refer to the event, since “exhibition” will have another meaning, as discussed below.

BIBFRAME Exhibition Model

There are no classes or properties covering exhibitions in BIBFRAME. Exhibition information can be expressed in a note. There is currently no controlled source for note types.

BIBFRAME also defines an Event class, but no subclasses for specific types of Events. The only predicates defined to express relationships between bibliographic resources and Events are eventContent and its inverse, eventContentOf, which are relationships between Events and Works that have the event as their subject. Additional relationships between bibliographic resources and events, which is a very rich modeling area and includes modeling of items in exhibitions, are not addressed in BIBFRAME.


Classes ———————– bf:Note

bf:Event


Properties ———————–

bf:note

bf:noteType

Summary of Recommendations to LC for BIBFRAME Modification

bf:arrangement and bf:Arrangement

bf:geographicCoverage, bf:GeographicCoverage, bf:temporalCoverage, bf:Temporal

bf:date

bf:Event

bf:genreForm and bf:GenreForm

bf:part

bf:place and bf:Place

bf:precededBy and bf:succeededBy

bf:subject

bf:title

ArtFrame/RareMat Exhibition Model

Notes —————–

Classes

schema:Event

schema:ExhibitionEvent

ex:Activity

ex:CuratorActivity

ex:DirectorActivity

ex:DonorActivity

ex:OrganizerActivity

ex:SponsorActivity

ex:Arrangement

ex:DescriptiveNote

ex:Entry

ex:Exhibition

Properties

bf:genreForm (object property)

bf:note (object property)

bf:title (object property)

ex:titleOf (object property)

dcterms:hasPart (property)

dcterms:isPartOf (property)

bf:subject (object property)

ex:subjectOf (object property)

seq:follows (object property)

seq:precedes (object property)

ex:atLocation (object property)

ex:isLocationOf (object property)

ex:covers (object property)

ex:coveredIn (object property)

ex:hasActivity (object property)

ex:isActivityOf (object property)

ex:hasArrangement (object property)

ex:isArrangementOf (object property)

ex:hasExhibition (object property)

ex:isExhibitionOf (object property)

ex:startDate (datatype property)

ex:endDate (datatype property)

Diagrams

Diagram 1. Exhibition Event

Exhibition Event Diagram 1

Notes

Diagram 2. Items in an Exhibition Event

Items_in_an_Exhibition_Event_2

Notes

Diagram 3. Item Description in the Context of an Exhibition

Item_Description_in_the_Context_of_an_Exhibition_3

Notes

Diagram 4. Exhibition catalog

Exhibition_Catalog 4

Notes

Digram 5. Multi-Site Exhibition

Multi_Site_Exhibitions_5

Notes

Diagram 6. Traveling Exhibition

Traveling_Exhibitions_6

Notes

Side-by-Side Examples

BIBFRAME

:item1 a bf:Item ;
    bf:note :note1 .

:note1 a bf:Note ;
    rdf:value “Exhibited: ‘Groundbreakers: Great American Gardens and the Women Who 
    Designed Them’ at the LuEsther T. Mertz Library, New York Botanical Gardens,
    New York, N.Y., May - October 2014.” ; 
    bf:noteType “exhibition” .

ArtFrame / RareMat (non-exhaustive)

:item1 a bf:Item ;
    ex:hasExhibition :exhibition1 ;
    bf:title :title1 ;
    bf:itemOf :instance1.

:title1 a bf:Title ;
    rdf:value “The Mill on the Floss” .

:instance1 a bf:Instance ;
    bf:instanceOf :work1 .

:work1 a bf:Work .

:exhibition1 a ex:Exhibition ;
    dcterms:isPartOf :exhibitionEvent1 ;
    ex:startDate “2018-02-01”^^edtf:EDTF ;
    ex:endDate “2018-04-30”^^edtf:EDTF ;
    bf:title :title2 ;    
    ex:hasArrangement ex:arrangement1 ; 
    bf:identifiedBy :identifier1 .

:title2 a bf:Title ;
    rdf:value “Black-and-white Illustrations in The Mill on the Floss by George Eliot, first edition” .

:identifier1 a bf:Identifier ;
    rdf:value “MFGEed1” .

:arrangement1 a ex:Arrangement ;
    rdf:value “Open to plate 10” .

:exhibitionEvent1 a schema:ExhibitionEvent ;
    ex:startDate “2018-01-01”^^edtf:EDTF ;
    ex:endDate “2018-06-30”^^edtf:EDTF ;
    dcterms:subject <http://id.loc.gov/authorities/subjects/sh88007062> ;
    bf:title “Victorian Era Illustrations” .

:catalog1 a bf:Work ;
    bf:genreForm <http://id.loc.gov/authorities/genreForms/gf2014026098> ;
    dcterms:subject :exhibitionEvent1 ;
    dcterms:hasPart :entry1 .

:entry1 a ex:Entry ;
    dcterms:subject :item1 , :instance1 , :work1 , :exhibition1 .

Future Work