Introduction
Tracking the provenance of an object is described in detail in the Provenance section of the model. This level of detail is often not available for all objects, and it is beneficial to have the current ownership, custody and location of objects available in the object record directly.
Even if there are detailed records of the ownership history for an object, these are still likely limited to the basics of who owned it, when, and how they acquired it. The acquisition is also likely for the object by itself, and what was paid or exchanged for it is very infrequently able to be published. For this 99% case, the transfers of ownership can be listed in the object record instead of in separate provenance records, but can be linked to them if they do exist. This pattern does not extend to changes of custody or location.
Current and Normal Owners, Custodians and Locations
Ownership
The current owner of the object should be referenced with transferred_title_to
in the most recent Acquisition
that transferred_title_of
the object. These transfers are described in detail in the Acquistion section of the provenance model, and in the reduced version described below within the object record.
To make the current owner easier to find in the data, the owner should also be referenced with current_owner
from the object itself. There are further modeling details available about People and Organizations that might own objects.
Example:
The current owner of Spring is the Getty.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/spring/6",
"type": "HumanMadeObject",
"_label": "Jeanne (Spring) by Manet",
"current_owner": [
{
"id": "http://vocab.getty.edu/ulan/500115988",
"type": "Group",
"_label": "Getty Museum"
}
]
}
Custody
Similarly, the current custodian of the object should be referenced with the transferred_custody_to
in the most recent TransferOfCustody
, in the same way as the current owner is referenced from the most recent Acquisition
. The equivalent property to current_owner
for custody is current_custodian
. Transfers of custody are described in more detail in the section on custody.
If there is a department or person that is not the owner but is responsible for the object, then that actor is the current_custodian
. Similarly, loans between organizations (either temporary or permanent) transfer custody rather than ownership.
Example:
The Night Watch is owned by the City of Amsterdam, and on permanent loan to the Rijksmuseum.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/nightwatch/14",
"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": [
{
"id": "https://linked.art/example/group/amsterdam_govt",
"type": "Group",
"_label": "City of Amsterdam Governing Body"
}
],
"current_custodian": [
{
"id": "http://vocab.getty.edu/ulan/500246547",
"type": "Group",
"_label": "Rijksmuseum"
}
]
}
Normal Custodian
When an object is temporarily loaned to another organization, for example for an exhibition, then the current owner does not change, but the current custodian will. It is useful in this circumstance to know who the usual or normal custodian of the object is when it's different from the current custodian. For example, if (and this is a very big "if" given the real world size of the painting) the Night Watch was ever loaned to another organization, then the owner would remain the city, the current custodian would be the exhibiting organization, and the Rijksmuseum would remain the normal custodian. This uses a property called current_permanent_custodian
.
Example:
The Night Watch is also (entirely hypothetically) loaned to the Getty Museum.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/nightwatch/17",
"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": [
{
"id": "https://linked.art/example/group/amsterdam_govt",
"type": "Group",
"_label": "City of Amsterdam Governing Body"
}
],
"current_permanent_custodian": {
"id": "http://vocab.getty.edu/ulan/500246547",
"type": "Group",
"_label": "Rijksmuseum"
},
"current_custodian": [
{
"id": "http://vocab.getty.edu/ulan/500115988",
"type": "Group",
"_label": "Getty Museum"
}
]
}
Location
The current location of the object is given using the current_location
property. This can give eference a gallery or specific part of a facility, or be used for the general location of the organization where the object is currently held. There are further modeling details available about Places.
Example:
The current location of the Spring is Gallery W204 (which is part of the West building, which is part of the Getty Center)
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/spring/7",
"type": "HumanMadeObject",
"_label": "Jeanne (Spring) by Manet",
"current_location": {
"id": "https://linked.art/example/place/W204",
"type": "Place",
"_label": "Gallery W204"
}
}
Normal Location
Similar to the current versus normal custodian, objects may also have a normal location compared to their current location. The object might not be where it normally is due to being removed for conservation work, because it has been moved for an exhibition, or due to gallery rotations. The model uses the same pattern as the normal custodian with a current_permanent_location
property.
Example:
Spring is (also hypothetically) currently in a different gallery for an exhibition.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/spring/14",
"type": "HumanMadeObject",
"_label": "Jeanne (Spring) by Manet",
"current_permanent_location": {
"id": "https://linked.art/example/place/W204",
"type": "Place",
"_label": "Gallery W204"
},
"current_location": {
"id": "https://linked.art/example/place/E100",
"type": "Place",
"_label": "Exhibition Gallery 100"
}
}
Simple Historical Ownership
The list of owners can be provided directly within the object record using the changed_ownership_through
property. This conveys a list of Acquisitions (not full Provenance events) in which the ownership of the object changed. The Acquisitions should be in the order in the resulting serialization of the model in which they should be displayed, for example in the correct order in the JSON-LD array if following the Linked Art API. If there are full Provenance Activity records, then these can be referenced via the part_of
property in the Acquisition.
Otherwise, all of the regular event properties and relationships are available for use.
Example:
Spring was transferred from Manet to Proust, and then later from the Durand-Ruel Gallery to Payne. (The full set of transfers would be given in the real record)
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/spring/15",
"type": "HumanMadeObject",
"_label": "Jeanne (Spring) by Manet",
"changed_ownership_through": [
{
"type": "Acquisition",
"_label": "Ownership of Spring to Proust",
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1881-01-01T00:00:00Z",
"end_of_the_end": "1883-12-31T23:59:59Z"
},
"transferred_title_from": [
{
"id": "https://linked.art/example/person/manet",
"type": "Person",
"_label": "Manet"
}
],
"transferred_title_to": [
{
"id": "https://linked.art/example/person/proust",
"type": "Person",
"_label": "Proust"
}
],
"part_of": [
{
"id": "https://linked.art/example/event/manet_proust",
"type": "Activity",
"_label": "Full Provenance Activity"
}
]
},
{
"type": "Acquisition",
"_label": "Ownership of Spring to Payne",
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1909-01-01T00:00:00Z",
"end_of_the_end": "1909-12-31T23:59:59Z"
},
"transferred_title_from": [
{
"id": "https://linked.art/example/person/durand",
"type": "Person",
"_label": "Durand-Ruel Gallery"
}
],
"transferred_title_to": [
{
"id": "https://linked.art/example/person/payne",
"type": "Person",
"_label": "Oliver Payne"
}
],
"part_of": [
{
"id": "https://linked.art/example/event/durand_payne",
"type": "Activity",
"_label": "Full Provenance Activity"
}
]
}
]
}