Introduction
The majority of recorded provenance events are when the object changes ownership, and the various methods in which that happens. In the descriptions below the terms 'seller' and 'buyer' are used to refer to the actor that is relinquishing ownership and the actor that is gaining ownership, even if there is no money or other goods or services changing hands. This is for clarity and conciseness of the descriptions, and not to imply that every transaction is a purchase.
Object Acquisition
Acquisitions are used to describe the transfer of ownership of an object from one owner to the next. The first owner is typically the artist, who would then transfer it to the second owner, to the third owner and so on. The ownership chain can be expressed by repeating this same pattern with the buyer from one acquisition being the seller in the subsequent one. If the previous owner (e.g. the seller if there is a value exchange) or the subsequent owner (e.g. the buyer) is not known for a particular acquisition, then the reference can be left out from the description.
The acquistion is not necessarily a purchase, it could be a gift, an inheritance or any other method of gaining the right of ownership of an object.
The model encodes this information with an Acquisition
part of the overall Provenance Event. The acquisition is the transfer of the right of ownership of an object (referenced in transferred_title_of
) from the seller (in transferred_title_from
) to the buyer (in transferred_title_to
).
Each object has its own Acquisition as part of the provenance event, so if a collector buys three paintings from a dealer, then there would be a single Provenance Event with three Acquisitions, all of which transfer the title of a single painting from the dealer to the collector.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/7",
"type": "Activity",
"_label": "Purchase of Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Acquisition",
"_label": "Acquisition of Sculpture from Seller",
"transferred_title_of": [
{
"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"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
]
}
],
"transferred_title_from": [
{
"type": "Person",
"_label": "Seller"
}
],
"transferred_title_to": [
{
"type": "Person",
"_label": "Buyer"
}
]
}
]
}
Multiple Owners
In the simple case of multiple simultaneous owners where either the division of the ownership is unknown or an even split, all of the owners can simply be listed with transferred_title_from
(when the group is selling) or transferred_title_to
(when the group is buying).
If there is additional information known about the exact nature of the ownership division, then it is worth considering the more complex and more expressive section on rights to describe this in more detail.
If there are multiple parties that have formally entered into a legal consortium or organization, and that consortium is the legal owner of the object, then the consortium should be modeled as a Group
with the parties as members, and be the sole owner of the object.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/8",
"type": "Activity",
"_label": "Purchase of Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Acquisition",
"_label": "Acquisition of Sculpture from Seller by two Buyers",
"transferred_title_of": [
{
"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"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
]
}
],
"transferred_title_from": [
{
"type": "Person",
"_label": "Seller"
}
],
"transferred_title_to": [
{
"type": "Person",
"_label": "Buyer"
},
{
"type": "Person",
"_label": "Buyer 2"
}
]
}
]
}
Agents
In some cases, it is known that an agent other than the buyer carried out the acquisition. This can be modeled by associating a different actor from the buyer (the person who title is transferred to) carrying out the activity.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/9",
"type": "Activity",
"_label": "Purchase of Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Acquisition",
"_label": "Acquisition of Sculpture from Seller",
"carried_out_by": [
{
"type": "Person",
"_label": "Agent for the Buyer"
}
],
"transferred_title_of": [
{
"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"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
]
}
],
"transferred_title_from": [
{
"type": "Person",
"_label": "Seller"
}
],
"transferred_title_to": [
{
"type": "Person",
"_label": "Buyer"
}
]
}
]
}
Exchange of Objects
This pattern allows for the exchange of objects between two parties by simply adding a second Acquisition.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/10",
"type": "Activity",
"_label": "Exchange of Sculpture for Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Acquisition",
"_label": "Acquisition of Sculpture from Seller",
"transferred_title_of": [
{
"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"
}
]
},
{
"id": "http://vocab.getty.edu/aat/300133025",
"type": "Type",
"_label": "Artwork"
}
]
},
{
"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"
}
]
}
],
"transferred_title_from": [
{
"type": "Person",
"_label": "Seller"
},
{
"type": "Person",
"_label": "Buyer"
}
],
"transferred_title_to": [
{
"type": "Person",
"_label": "Buyer"
},
{
"type": "Person",
"_label": "Seller"
}
]
},
{
"type": "Acquisition",
"_label": "Acquisition of Painting from Buyer"
}
]
}
Payments
A purchase is a common type of acquisition in which money is exchanged for the object. The provenance event consists of the acquisition along with one or more related payments. This typically involves a payment from the seller to the buyer for the agreed upon price, but might include further payments to or from others such as for shared ownership, payment of debts owed, or for services rendered as part of the overall activity.
The Payment
activity has equivalent relationships for the actor that the money is transferred from (paid_from
), the actor the money is transferred to (paid_to
), and the amount of money paid (paid_amount
). The amount itself is a MonetaryAmount
that has a value (value
) and a currency (currency
). Each separable monetary amount is modeled as an individual instance of Payment
, and thus if the buyer paid a commission to the agent who carried out the purchase, and paid for the object, then there would be two Payments, one from the buyer to the seller and one from the buyer to the agent. Commissions to auction houses or for consignments would use the same pattern.
Diachronic Comparison of Monetary Amounts
The CIDOC-CRM SIG have clarified that the MonetaryAmount
refers to the face value of the combination of value and currency. This means that any comparison between MonetaryAmount
instances should also take into account the datetimes of resources that reference it, rather than standing alone. Further, it is still unclear if the same MonetaryAmount
can be used for all occurences of value and currency, or whether there is something more unique than that.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/11",
"type": "Activity",
"_label": "Purchase of Sculpture",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Payment",
"paid_amount": {
"type": "MonetaryAmount",
"value": 1000,
"currency": {
"id": "http://vocab.getty.edu/aat/300411994",
"type": "Currency",
"_label": "US Dollars"
}
},
"paid_from": [
{
"type": "Person",
"_label": "Buyer"
}
],
"paid_to": [
{
"type": "Person",
"_label": "Seller"
}
]
}
]
}
Payment for Services
Beyond simply paying the previous owner for the object, there are many other reasons why money might change hands that are relevant to describe for art history.
For example, it might be known how much commission went to an auction house or for the sale of objects by consignment, particularly if this comes from the stock books or records of the company. Artists might be paid a commission in advance for the production of an object, or agents might be paid a commission for finding and purchasing objects on behalf of the new owner.
Example:
The above payment might actually have been 900 dollars to the previous owner and 100 dollars to the auction house for its cut.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/12",
"type": "Activity",
"_label": "Purchase of Sculpture with Commission",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Payment",
"paid_amount": {
"type": "MonetaryAmount",
"value": 900,
"currency": {
"id": "http://vocab.getty.edu/aat/300411994",
"type": "Currency",
"_label": "US Dollars"
}
},
"paid_from": [
{
"type": "Person",
"_label": "Buyer"
}
],
"paid_to": [
{
"type": "Person",
"_label": "Seller"
}
]
},
{
"type": "Payment",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300393199",
"type": "Type",
"_label": "Commission"
}
],
"paid_amount": {
"type": "MonetaryAmount",
"value": 100,
"currency": {
"id": "http://vocab.getty.edu/aat/300411994",
"type": "Currency",
"_label": "US Dollars"
}
},
"paid_from": [
{
"type": "Person",
"_label": "Buyer"
}
],
"paid_to": [
{
"type": "Group",
"_label": "Auction House",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300417515",
"type": "Type",
"_label": "Auction House (organization)"
}
]
}
]
}
]
}