Introduction
Especially when working from incomplete documentary evidence, it is frequently difficult to determine exactly what sort of exchange took place in the past. The object might have been sold or otherwise changed ownership, or it might have been only on loan. While this could theoretically be handled by a transfer of an indeterminate property right, this would be very complex and give the impression of more information being available than is actually the case. Instead, we add a new class called Transfer
which allows the indeterminate transfer of an object between two parties without claiming whether it is ownership, custody or something else entirely.
Transfer
The class for indeterminate transfers is Transfer
, and has three properties beyond the core activity properties:
- transferred: references the object or objects being transferred
- transferred_from: references the people or groups from whom the object(s) are being transferred
- transferred_to: references the people or groups to which the object(s) are being transferred
This mirrors the other classes such as Acquisition
, TransferOfCustody
, and Move
.
Example:
A painting is transferred between two people, however it is not clear whether it was permanent or merely a loan.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/transfer/1",
"type": "Activity",
"_label": "Transfer of Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Transfer",
"transferred": [
{
"id": "https://linked.art/example/object/example",
"type": "HumanMadeObject",
"_label": "Example Painting"
}
],
"transferred_from": [
{
"id": "https://linked.art/example/person/person1",
"type": "Person",
"_label": "Person 1"
}
],
"transferred_to": [
{
"id": "https://linked.art/example/person/person2",
"type": "Person",
"_label": "Person 2"
}
]
}
]
}