Object Provenance

Table of Contents


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 it 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 model.

The key participants in those different types of events are:

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 general model, as hinted at above, is to create a resource for the Activity or Event, and associate the participants with that resource. The relationships for time (timespan) and place (took_place_at) are relevant to Events that happen without the direct cause being a human action, and the relationship for the actor (carried_out_by) is added to those for human Activities. The relationship to the Object is dependent on the type of Event or Activity, which are discussed in more detail in the following sections.

{
  "@context": "https://linked.art/ns/v1/linked-art.json", 
  "id": "https://linked.art/example/activity/68", 
  "type": "Activity", 
  "took_place_at": [
    {
      "id": "https://linked.art/example/place/15", 
      "type": "Place", 
      "label": "Where"
    }
  ], 
  "timespan": {
    "id": "https://linked.art/example/time/15", 
    "type": "TimeSpan", 
    "label": "When", 
    "end_of_the_end": "latest-end-datetime", 
    "begin_of_the_begin": "earliest-start-datetime"
  }, 
  "carried_out_by": [
    {"id": "https://linked.art/example/actor/17","type": "Actor","label": "Who"}
  ]
}

JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)

Sections