Introduction
Ownership is often more complicated than a single individual acquiring an object and immediately having both physical possession and the legal right of ownership. This section deals with the description of more complex scenarios that require explicitly describing the right that is held by a particular actor, such as for asymmetric shared ownership of an object. Other scenarios in which a right is being transferred or created rather than the more specific case of the entire right of ownership are also covered here, such as the intellectual property right to perform a work of time-based media or theatre.
Rights and their Acquisition
The model for acquiring an object (by purchase, gift or other means) incorporates the specific right of ownership into the properties of the Acquisition
resource. The acquisition transfers the title of the object between parties, but that "title" could be expanded to a more completely modeled Right
. For some scenarios where we have more information about the interactions and legal status, we need to explicitly model these rights.
Rights are conceptual things that apply to their real world subjects. They are not relative to time, but can be established and invalidated by various activities or events. The simplest case would be that as part of the provenance event where an object is acquired, there is also the establishment of the right of ownership of that object by the new owner and the invalidation of the right of ownership of the previous owner.
While it is possible and valid to have both the Acquisition
and the Right
in a single provenance entry, it is redundant as the acquisition model is simpler and more concise without losing any information. The sections below introduce scenarios in which information would be lost without the explicit modeling of the Right.
In order to connect the Right
to the provenance activity, we introduce a new Activity
subclass called RightAcquistion
. It has two new properties: establishes
links the Right
that was established by this activity, and invalidates
can optionally link to the Right
that was rendered invalid by the activity.
Instances of Right
have two properties: possessed_by
refers to the actor (Group
or Person
) that has the right described, and applies_to
refers to the thing over which the right pertains.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/27",
"type": "Activity",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "Acquisition",
"transferred_title_of": [
{
"type": "HumanMadeObject",
"_label": "Painting"
}
],
"transferred_title_to": [
{
"type": "Group",
"_label": "Museum"
}
]
},
{
"type": "RightAcquisition",
"establishes": {
"type": "Right",
"_label": "Right of Ownership for Painting",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Museum"
}
],
"applies_to": [
{
"type": "HumanMadeObject",
"_label": "Painting"
}
]
}
}
]
}
Multiple Owners with Different Stakes
A change in ownership might involve more than two parties, resulting in a state where multiple actors together own some share of the object. Examples of this situation include when art dealers share the costs of purchasing an object and then share the proceeds of sale in the same proportions, when a donor gives part of the value of an object to an institution, or when a marriage is dissolved and the value of the object is split between the individuals.
The base acquisition model allows for ownership to be transferred to multiple actors, but it is impossible to then determine the share of the value that was owned by each party and the implicit assumption should be that all parties owned equal shares. In order to allow for the description of different proportions of the object to be owned by different actors, we need partition the Right
into shares to be divided. These components are themselves Right
s that are possessed by the respective parties.
In the same way as describing the physical extent of a physical object, we can use a Dimension
to describe the logical extent of the ownership. At any given time the total shares of an object should, of course, add up to the entire object. If this is not true, then it might signify either that the accounting is wrong (more than 100% of the object is claimed as being owned), theft (multiple claims of ownership at the same time, some of which are illegal), or just that it is now unknown what happened.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/28",
"type": "Activity",
"_label": "Purchase of Painting by Two Dealers",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "RightAcquisition",
"establishes": {
"type": "Right",
"_label": "Total Right of Ownership",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"applies_to": [
{
"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"
}
]
}
]
}
],
"part": [
{
"type": "Right",
"_label": "30% Ownership by Dealer 1",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"dimension": [
{
"type": "Dimension",
"value": 30,
"unit": {
"id": "http://qudt.org/1.1/vocab/unit/Percent",
"type": "MeasurementUnit",
"_label": "Percent"
}
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Dealer 1"
}
]
},
{
"type": "Right",
"_label": "70% Ownership by Dealer 2",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"dimension": [
{
"type": "Dimension",
"value": 70,
"unit": {
"id": "http://qudt.org/1.1/vocab/unit/Percent",
"type": "MeasurementUnit",
"_label": "Percent"
}
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Dealer 2"
}
]
}
]
}
}
]
}
Transfer of Shares
Once the share of an object has been established, that right can be traded as part of future provenance entries.
In order to maintain consistency with the original establishment of the division of ownership, the difference between the initial state and the new state is not described, but instead the new state is described directly. If a 10% share is acquired from another owner, the 10% is not traded requiring the system to calculate the new total proportions, but instead the new total proportions are described.
If only existing owners are part of the entry, then there is no need to establish a new Right that is the new total ownership, it is simply a new division of the existing total. Ownership Rights are brought into existence by Acquisition
events - the set of people who possess the right is fixed, and is the same set of actors as those referenced by title_transferred_to
. Thus any new Acquisition by a new partial owner requires a new Ownership Right, as described above.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/29",
"type": "Activity",
"_label": "Trading Shares of Painting between Two Dealers",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "RightAcquisition",
"establishes": {
"type": "Right",
"_label": "40% Ownership by Dealer 1",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"dimension": [
{
"type": "Dimension",
"value": 40,
"unit": {
"id": "http://qudt.org/1.1/vocab/unit/Percent",
"type": "MeasurementUnit",
"_label": "Percent"
}
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Dealer 1"
}
],
"applies_to": [
{
"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"
}
]
}
]
}
]
},
"invalidates": [
{
"type": "Right",
"_label": "30% Ownership by Dealer 1",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
]
}
]
},
{
"type": "RightAcquisition",
"establishes": {
"type": "Right",
"_label": "60% Ownership by Dealer 2",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
],
"dimension": [
{
"type": "Dimension",
"value": 70,
"unit": {
"id": "http://qudt.org/1.1/vocab/unit/Percent",
"type": "MeasurementUnit",
"_label": "Percent"
}
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Dealer 2"
}
]
},
"invalidates": [
{
"type": "Right",
"_label": "70% Ownership by Dealer 2",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055603",
"type": "Type",
"_label": "Ownership Right"
}
]
}
]
}
]
}
Intellectual Property Rights
Other sorts of rights associated with art that can be acquired include the intellectual property rights, such as copyright for a text or image, separate from any physical carrier, or the right to perform some piece of time-based media such as a projected installation. The manipulation of these rights also uses the RightAcquisition
pattern.
Many copyrights for images are owned by collective organizations rather than individuals, and these organizations can acquire and exchange those copyrights completely independently of any physical carrier of the image.
Example:
A copyright management organization, the Paintings Copyright Association, acquired the copyright for a particular painting in 2014.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/provenance/30",
"type": "Activity",
"_label": "Copyright acquisition by PCA",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055863",
"type": "Type",
"_label": "Provenance Activity"
}
],
"part": [
{
"type": "RightAcquisition",
"establishes": {
"type": "Right",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300055598",
"type": "Type",
"_label": "Copyright"
}
],
"possessed_by": [
{
"type": "Group",
"_label": "Paintings Copyright Association"
}
],
"applies_to": [
{
"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"
}
]
}
]
}
}
]
}