Introduction
Exhibitions are very common activity that involves artwork owned by many different organizations being displayed together, often with additional contextual information linking the pieces together. The exhibition is often presented at different venues over time, and might be part of a series such as the World's Fairs or annual exhibitions.
Exhibition Concept
The model distinguishes between the concept of the exhibition and the activity that makes that concept real. The concept is created by the people who originally think up the exhibition, long before any of the pieces are collected together. The exhibition concept likely has some theme that results in a coherent set of objects being presented, which could be as complex as post-industrial life or as simple as the life's work of a particular artist.
The concept is modeled as a PropositionalObject
, and classified_as
aat:300417531 to ensure that it's clearly tagged as an exhibition. It can have all of the affordances of any concept, such as names, identifiers, references, relationships and more.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/concept/1",
"type": "PropositionalObject",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300417531",
"type": "Type",
"_label": "Exhibition"
}
],
"identified_by": [
{
"type": "Identifier",
"content": "exh-2010-eg-a"
},
{
"type": "Name",
"content": "Example Exhibition"
}
],
"about": [
{
"id": "http://vocab.getty.edu/aat/300233686",
"type": "Type",
"_label": "Gender Issues"
}
],
"created_by": {
"type": "Creation",
"carried_out_by": [
{
"type": "Person",
"_label": "Curator"
}
]
},
"motivated": [
{
"type": "Activity",
"_label": "Exhibition at Venue",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
]
}
]
}
Exhibition Activity
There is an activity, as described in the section on Provenance, which is the exhibiting of the objects. In particular, the public exhibition takes place at a certain time given in timespan
, at a certain place or places given in took_place_at
, and was organized by some actor or actors, likely organizations, given in carried_out_by
. It can be recognized as an exhibition using the classification of aat:300054766, "exhibitions".
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/activity/1",
"type": "Activity",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "2010-08-01",
"end_of_the_end": "2011-06-01"
},
"took_place_at": [
{
"type": "Place",
"_label": "Example Museum's Location",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300005768",
"type": "Type",
"_label": "Museum (place)"
}
]
}
],
"carried_out_by": [
{
"type": "Group",
"_label": "Example Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "Museum"
}
]
}
]
}
Multiple Venues
Some exhibitions are shown at different locations over time, moving from one museum or exhibition hall to another. In this case, each of the different locations is treated as an exhibition in its own right, and then a broader "travelling exhibition" (aat:300054773) is created that these are part of. Note that the travelling exhibition can have separate properties from its parts, such as a label
to distinguish the joint nature and a broader timespan
that covers all of the venues. There is no need to duplicate the organizations and locations in the travelling exhibition, these can be determined more easily by looking at the exhibitions that it consists of.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/event/5",
"type": "Activity",
"_label": "Example Travelling Exhibition at Two Museums",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054773",
"type": "Type",
"_label": "Exhibiting in multiple locations"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1980-10-01",
"end_of_the_end": "1981-08-14"
},
"part": [
{
"type": "Activity",
"_label": "Exhibition at Museum 1",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1980-10-01",
"end_of_the_end": "1981-03-01"
}
},
{
"type": "Activity",
"_label": "Exhibition at Museum 2",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1981-03-14",
"end_of_the_end": "1981-08-14"
}
}
]
}
Objects
The collection of art objects on display at exhibitions can be listed from the Exhibition with the property used_specific_object
. The model for the set of objects that make up the content of the exhibition is the same as the model for permanent collections -- the objects are collected together into a Set
, which is used by the Exhibition.
For the travelling exhibitions described above, a different collection of objects should be referenced from each of the venues. Objects are frequently added or removed for the venue, and each venue will likely have its own context specific information such as descriptions or labels. The top level activity representing the overall exhibition does not have its own Aggregation in the travelling exhibition case.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/activity/2",
"type": "Activity",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"used_specific_object": [
{
"type": "Set",
"member": [
{
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
}
]
},
{
"type": "HumanMadeObject",
"_label": "Another Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting"
}
]
},
{
"type": "HumanMadeObject",
"_label": "Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300047090",
"type": "Type",
"_label": "Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
}
]
}
]
}
]
}
Exhibition Provenance: Transfer of Custody
As objects used for exhibitions frequently come from many different organizations, it is useful and interesting to track the custody of the object as well as the ownership. This TransferOfCustody
event is modeled in the same way as other Provenance changes.
For each exhibition, the custody of the object is transferred from the previous custodian to the next. In the simple case of a single venue for the exhibition, the first transfer is likely to be from the owner to the organization responsible for the exhibition, and then at the end of the exhibition, the custody is transferred back again. In a more complex scenario with multiple venues, each organization hosting the exhibition will likely transfer custody to the next in the sequence. Unlike regular provenance transfers, these happen for a specific purpose ... the exhibition. This is added to the model with the specific_purpose
property.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/2",
"type": "Activity",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "TransferOfCustody",
"_label": "Custody Transfer of Painting for Exhibition",
"transferred_custody_of": [
{
"type": "HumanMadeObject",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"current_owner": [
{
"type": "Group",
"_label": "Owning Museum"
}
]
}
],
"transferred_custody_from": [
{
"type": "Group",
"_label": "Owning Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "Museum"
}
]
}
],
"transferred_custody_to": [
{
"type": "Group",
"_label": "Exhibiting Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "Museum"
}
]
}
],
"specific_purpose": [
{
"type": "Activity",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"carried_out_by": [
{
"type": "Group",
"_label": "Exhibiting Museum"
}
],
"used_specific_object": [
{
"type": "Set",
"member": [
{
"type": "HumanMadeObject",
"_label": "Painting"
}
]
}
]
}
]
}
]
}
Exhibition Provenance: Internal Moves
Conversely to the previous section, when the object being exhibited at the location is owned by the same organization, there is no transfer of custody. The equivalent activity is likely to be simply moving the object from its regular location to the exhibition space. If the exhibition location is not known, then there is no need to provide the moved_to
and moved_from
relationships for the Move
activity.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/3",
"type": "Activity",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Move",
"_label": "Move of object for exhibition",
"carried_out_by": [
{
"type": "Group",
"_label": "Exhibiting Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "Museum"
}
]
}
],
"moved": [
{
"type": "HumanMadeObject",
"_label": "Example Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
],
"current_owner": [
{
"type": "Group",
"_label": "Exhibiting Museum"
}
]
}
],
"specific_purpose": [
{
"type": "Activity",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"carried_out_by": [
{
"type": "Group",
"_label": "Exhibiting Museum"
}
],
"used_specific_object": [
{
"type": "Set",
"_label": "Set of Exhibited Objects",
"member": [
{
"type": "HumanMadeObject",
"_label": "Example Painting"
}
]
}
]
}
]
}
]
}
Exhibition Specific Labels
The curators for exhibitions sometimes assign new labels or names for objects, for example to ensure that they follow an established pattern for the exhibition, rather than following that of the owning organization or person, if any. This activity of assigning a title to the object is part of the exhibition via the part
property, and assigns a new Name
to the object. This separation of the name from the object via the AttributeAssignment
ensures that the Name
does not directly end up in the set of titles for the object without further intervention. As with any activity, the assignment can also be carried_out_by
an actor, and have a timespan for when it was assigned. This is an instance of the Context Specific Assertions pattern.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/activity/3",
"type": "Activity",
"_label": "Example Exhibition",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300054766",
"type": "Type",
"_label": "Exhibiting"
}
],
"used_specific_object": [
{
"type": "Set",
"member": [
{
"type": "HumanMadeObject",
"_label": "Real Painting Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300033618",
"type": "Type",
"_label": "Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300435443",
"type": "Type",
"_label": "Type of Work"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
]
}
]
}
],
"part": [
{
"type": "AttributeAssignment",
"carried_out_by": [
{
"type": "Person",
"_label": "A. Curator"
}
],
"assigned_property": "identified_by",
"assigned": [
{
"type": "Name",
"content": "Exhibition Specific Name"
}
],
"assigned_to": {
"type": "HumanMadeObject",
"_label": "Real Painting Name"
},
"involved": [
{
"type": "Set"
}
]
}
]
}
Depiction of the Object at the Exhibition
There are often photographs of the object as displayed in the exhibition. These are representations of the object regardless, and hence can be associated directly with the object rather than via an AttributeAssignment
. The description of the image therefore follows the same pattern as other digital representations of the object, but like the label example above, it occurred as part of the exhibition.
The same pattern of having the creation of the image as part of the exhibition activity does not suffice, as the image could be a digital reproduction of physical photograph, created much later than the exhibition. Secondly, the creation of the photograph was very likely not carried out as part of carrying out the exhibition by the museum, it could easily have been taken by a visitor.
FIXME
top = Exhibition()
top._label = "Example Exhibition"
obj = Painting(art=1)
obj._label = "Painting"
agg = model.Set()
agg.member = obj
top.used_specific_object = agg
#img = DigitalImage("http://example.org/images/object-at-exhibition.jpg")
#obj.representation = img
#proxy = Proxy()
#proxy.proxyFor = obj
#proxy.proxyIn = agg
# proxy.representation = img
#img.represents = proxy