Object Provenance

Introduction

The general model for describing the provenance of an object is to track the events in which the object of interest is created or discovered, transferred between owners or custodians, until it is lost, destroyed or in its present location. For example a painting's provenance starts when the artist paints it, and then there are events in which ownership of the painting is transferred from the artist to its first owner, and then on to subsequent owners. The details of those transfers are the primary data to be collected in the provenance part of the model.

In between the events there are periods of time in which the ownership does not change, but other interesting events may still occur, including change of custody, such as when the painting is loaned out for an exhibition or curation activities, such as taking inventory, conservation or revaluation.

The provenance of an object is described as a series of activities, built on top of the basic patterns. For a single entry in the chain of provenance there are frequently multiple activities bundled together into a "Provenance Event" of interest. These bundled activities could be the transfer of ownership, the transfer of custody, physically moving the object, a payment of money or the promise of some future action. This section documents the basic framework in which provenance events are described and subsequent sections will document specific use cases.

The chain of events starts with the production of the object by its creator, and ends only with its destruction. As there can only be one of each, they are focused on the object rather than on the activity and have a different pattern. This information is covered in the Object section of the model, as while the events are part of the lifecycle of the object, they are not modeled in the same way as other Provenance Events.

Provenance Event

Provenance Events are wrapper activities which represent the context in which several more granular events occur, and represent the overall event that is tracked in the chain, rather than the specific legal and physical changes that affect one or more objects. For example, an exchange of one object for another is a single provenance entry that involves the transfer of ownership of the two objects and thus that event would appear in both objects' timelines. It might also be accompanied by an additional payment of money, promise of an activity or other contributions.

Provenance Events have all of the regular properties and relationships, as documented in the baseline patterns. In particular, the relationships to actors, places and time reflect the overall event, and can be further specified in the separate parts if they are different and known.

Example:

The Museum made a purchase in late April 2002 of a painting. The details about the painting and payment would be given using parts (the Acquisition and a Payment respectively, and described in more detail in subsequent sections).

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/4",
  "type": "Activity",
  "_label": "Purchase of Painting",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "identified_by": [
    {
      "type": "Identifier",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300404621",
          "type": "Type",
          "_label": "Owner-Assigned Number"
        }
      ],
      "content": "acq-2002-0005"
    }
  ],
  "timespan": {
    "type": "TimeSpan",
    "begin_of_the_begin": "2002-04-19T00:00:00Z",
    "end_of_the_end": "2002-04-26T00:00:00Z"
  },
  "carried_out_by": [
    {
      "type": "Group",
      "_label": "Museum",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300312281",
          "type": "Type",
          "_label": "Museum"
        }
      ]
    }
  ],
  "part": [
    {
      "type": "Acquisition",
      "_label": "Acquisition of Painting from Seller"
    },
    {
      "type": "Payment",
      "_label": "Payment of Price to Seller"
    }
  ]
}

graph TD classDef object stroke:black,fill:#E1BA9C,rx:20px,ry:20px; classDef actor stroke:black,fill:#FFBDCA,rx:20px,ry:20px; classDef type stroke:red,fill:#FAB565,rx:20px,ry:20px; classDef name stroke:orange,fill:#FEF3BA,rx:20px,ry:20px; classDef dims stroke:black,fill:#c6c6c6,rx:20px,ry:20px; classDef infoobj stroke:#907010,fill:#fffa40,rx:20px,ry:20px classDef timespan stroke:blue,fill:#ddfffe,rx:20px,ry:20px classDef place stroke:#3a7a3a,fill:#aff090,rx:20px,ry:20px classDef event stroke:#1010FF,fill:#96e0f6,rx:20px,ry:20px classDef literal stroke:black,fill:#f0f0e0; classDef classstyle stroke:black,fill:white; O1(provenance/4) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Purchase of Painting''") class O1_4 literal; O2(aat:300055863) class O2 type; O2-- type -->O2_0[Type] class O2_0 classstyle; O2-- _label -->O2_3("''Provenance Activity''") class O2_3 literal; O1-- classified_as -->O2 O3( _ ) class O3 name; O3-- type -->O3_0[Identifier] class O3_0 classstyle; O4(aat:300404621) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Owner-Assigned Number''") class O4_3 literal; O3-- classified_as -->O4 O3-- content -->O3_3("''acq-2002-0005''") class O3_3 literal; O1-- identified_by -->O3 O5( _ ) class O5 timespan; O5-- type -->O5_0[TimeSpan] class O5_0 classstyle; O5-- begin_of_the_begin -->O5_2("''2002-04-19T00:00:00Z''") class O5_2 literal; O5-- end_of_the_end -->O5_3("''2002-04-26T00:00:00Z''") class O5_3 literal; O1-- timespan -->O5 O6( _ ) class O6 actor; O6-- type -->O6_0[Group] class O6_0 classstyle; O6-- _label -->O6_2("''Museum''") class O6_2 literal; O7(aat:300312281) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Museum''") class O7_3 literal; O6-- classified_as -->O7 O1-- carried_out_by -->O6 O8( _ ) class O8 event; O8-- type -->O8_0[Acquisition] class O8_0 classstyle; O8-- _label -->O8_2("''Acquisition of Painting from Seller''") class O8_2 literal; O1-- part -->O8 O9( _ ) class O9 event; O9-- type -->O9_0[Payment] class O9_0 classstyle; O9-- _label -->O9_2("''Payment of Price to Seller''") class O9_2 literal; O1-- part -->O9
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Classifications

There are many different types of provenance activity that can be covered with this model, from simple purchases to exchange money for an object, or more complex endowments, promised gifts, bequeathments and so forth. These classifications should be added to the activity to clarify the particular event.

Example:

A benevolent donor gives two paintings to a museum.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/5",
  "type": "Activity",
  "_label": "Gift of two Paintings to Museum",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    },
    {
      "id": "http://vocab.getty.edu/aat/300417637",
      "type": "Type"
    }
  ],
  "part": [
    {
      "type": "Acquisition",
      "_label": "Acquisition of Painting 1"
    },
    {
      "type": "Acquisition",
      "_label": "Acquisition of Painting 2"
    }
  ]
}

graph TD classDef object stroke:black,fill:#E1BA9C,rx:20px,ry:20px; classDef actor stroke:black,fill:#FFBDCA,rx:20px,ry:20px; classDef type stroke:red,fill:#FAB565,rx:20px,ry:20px; classDef name stroke:orange,fill:#FEF3BA,rx:20px,ry:20px; classDef dims stroke:black,fill:#c6c6c6,rx:20px,ry:20px; classDef infoobj stroke:#907010,fill:#fffa40,rx:20px,ry:20px classDef timespan stroke:blue,fill:#ddfffe,rx:20px,ry:20px classDef place stroke:#3a7a3a,fill:#aff090,rx:20px,ry:20px classDef event stroke:#1010FF,fill:#96e0f6,rx:20px,ry:20px classDef literal stroke:black,fill:#f0f0e0; classDef classstyle stroke:black,fill:white; O1(provenance/5) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Gift of two Paintings to Museum''") class O1_4 literal; O2(aat:300055863) class O2 type; O2-- type -->O2_0[Type] class O2_0 classstyle; O2-- _label -->O2_3("''Provenance Activity''") class O2_3 literal; O1-- classified_as -->O2 O3(aat:300417637) class O3 type; O3-- type -->O3_0[Type] class O3_0 classstyle; O1-- classified_as -->O3 O4( _ ) class O4 event; O4-- type -->O4_0[Acquisition] class O4_0 classstyle; O4-- _label -->O4_2("''Acquisition of Painting 1''") class O4_2 literal; O1-- part -->O4 O5( _ ) class O5 event; O5-- type -->O5_0[Acquisition] class O5_0 classstyle; O5-- _label -->O5_2("''Acquisition of Painting 2''") class O5_2 literal; O1-- part -->O5
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Relative Times

When describing historical events, it may not be possible to give any useful timespan of when the activity occured, and only be able to relate it to happening before or after another event. This allows the activity to be ordered in a chain of events, without being explicit about any date range.

The provenance activity has two properties to cover this situation, starts_after_the_end_of and ends_before_the_start_of. The first relates to activities that occur before the current event (the start of the current event is after the end of the previous one) and the latter relates to activities that occur after the current one, by the same logic.

Example:

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/6",
  "type": "Activity",
  "_label": "Undated Purchase of Painting",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "starts_after_the_end_of": [
    {
      "type": "Activity",
      "_label": "Previous Owner's Acquisition",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055863",
          "type": "Type",
          "_label": "Provenance Activity"
        }
      ]
    }
  ],
  "ends_before_the_start_of": [
    {
      "type": "Activity",
      "_label": "Subsequent Owner's Acquisition",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055863",
          "type": "Type",
          "_label": "Provenance Activity"
        }
      ]
    }
  ]
}

graph TD classDef object stroke:black,fill:#E1BA9C,rx:20px,ry:20px; classDef actor stroke:black,fill:#FFBDCA,rx:20px,ry:20px; classDef type stroke:red,fill:#FAB565,rx:20px,ry:20px; classDef name stroke:orange,fill:#FEF3BA,rx:20px,ry:20px; classDef dims stroke:black,fill:#c6c6c6,rx:20px,ry:20px; classDef infoobj stroke:#907010,fill:#fffa40,rx:20px,ry:20px classDef timespan stroke:blue,fill:#ddfffe,rx:20px,ry:20px classDef place stroke:#3a7a3a,fill:#aff090,rx:20px,ry:20px classDef event stroke:#1010FF,fill:#96e0f6,rx:20px,ry:20px classDef literal stroke:black,fill:#f0f0e0; classDef classstyle stroke:black,fill:white; O1(provenance/6) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Undated Purchase of Painting''") class O1_4 literal; O2(aat:300055863) class O2 type; O2-- type -->O2_0[Type] class O2_0 classstyle; O2-- _label -->O2_3("''Provenance Activity''") class O2_3 literal; O1-- classified_as -->O2 O3( _ ) class O3 event; O3-- type -->O3_0[Activity] class O3_0 classstyle; O3-- _label -->O3_2("''Previous Owner's Acquisition''") class O3_2 literal; O3-- classified_as -->O2 O1-- starts_after_the_end_of -->O3 O4( _ ) class O4 event; O4-- type -->O4_0[Activity] class O4_0 classstyle; O4-- _label -->O4_2("''Subsequent Owner's Acquisition''") class O4_2 literal; O4-- classified_as -->O2 O1-- ends_before_the_start_of -->O4
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Parts

The Provenance Event likely includes some number of further, more specific aspects. These aspects are described in more detail in the following, linked sections.

Acquisition and Payments

The majority of provenance events include the change of ownership of an object, or its acquisition. Many of these acquisitions involve the payment of money, or the exchange of another object, for the transfer of ownership - a purchase rather than a gift.

These sorts of provenance events are documented in the Acquisition section.

Transfers of Custody

There are also provenance events that do not involve a transfer of legal ownership, only the transfer of custody or guardianship. Use cases for this include permanent loans, that might otherwise seem like ownership, and temporary loans, such as for exhibitions. Theft or looting are both illegal transfers of custody, as the object should be restituted to its rightful owner, and the simple loss of an object is the transfer of custody to no entity in particular.

These sorts of provenance events are documented in the Custody section.

Acquisition of a Right

Some transfers of ownership are more complex than simply acquiring an object and involve the transfer of shares of ownership, possibly being traded amongst a network of owners over time. In this case, it is necessary to model the right of ownership, and how it is being divided and managed. Other scenarios where this pattern is important is when the "thing" being acquired is not a physical object, but an intellectual property right, such as the right to perform a work of theatre or other time-based media.

These sorts of provenance events are documented in the Rights section.

Rediscovery of an Object

Objects can be lost, sometimes for very long periods of time, and then encountered by a different culture or set of people than the ones that lost it. As this might happen several times in the history of an object, and there are ownership and custody implications of the rediscovery, encounters of these sorts are part of the provenance record of the object. Knowledge about previous encounters or the production of the object may not be known, meaning that it is possible that this is the first known entry in the provenance chain.

These sorts of provenance events are documented in the Encountering an Object section.

Promise of Activity

A promise of an activity is also interesting to capture as part of a provenance event. This includes situations where an object is on loan to an organization, but there is a promise that ownership will be given in the future according to some conditions. Equally, a commision for an object involves a promise on the part of the artist to create an artwork, and may involve the lending of items to copy or be inspired by, and pre-payment of financial compensation. Finally, a bid at an auction is the promise to acquire the object (or objects) if it is the highest such bid.

Promises are documented in the Promises section, and bids are auction specific uses of this, documented in the Auctions section.

Movement of Object

Although not often explicitly documented, most provenance activities also involve the physical relocation of the acquired object. This is especially interesting for use with describing exhibitions, where the location is explicitly known over a period of time, or in cases where such movement is extraordinary in some way, such as the relocation of a building or other "immovable" piece of art.

These sorts of provenance events are documented in the Movement section.

Specific Uses

There are some common scenarios that can be described using Linked Art's Provenance modeling, with some additional vocabulary for precision: