Table of Contents
Introduction
Tracking the provenance of an object is described in detail in the Provenance section of the model. This section describes how to link the object's description into those events and entities.
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.
To make the current owner easier to find from the object's description, the owner should also be referenced with current_owner from the object itself. There are further modeling details available about People and Orgaizations that might own objects.
Example:
The current owner of the painting is a Museum.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/53",
"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/17",
"type": "Group",
"_label": "Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "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. There is an equivalent property to current_owner for custody, which is current_custodian. This is described in more detail in the section on custody.
Note that objects are owned by legal entities, such as people or organizations. 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.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/54",
"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/18",
"type": "Group",
"_label": "Museum",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300312281",
"type": "Type",
"_label": "Museum"
}
]
}
],
"current_custodian": [
{
"id": "https://linked.art/example/group/19",
"type": "Group",
"_label": "Paintings Department",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300263534",
"type": "Type",
"_label": "Department"
}
]
}
]
}
Location
The current location of the object is given using the current_location property. This can give a reference to a gallery or specific part of a facility, or be used for the general address of the organization where the object is currently held. There are further modeling details available about Places.
Example:
The current location of the painting is Gallery W6.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/55",
"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_location": {
"id": "https://linked.art/example/place/14",
"type": "Place",
"_label": "Gallery W6"
}
}