Loans, Thefts, Losses and other Changes of Custody

Introduction

When there is a change of who has physical possession of an object, but not who the legal owner of it is, that constitutes a change of custody rather than a change of ownership. This pattern includes use cases such as lending an object to another party for some amount of time, the theft of an object (as the legal owner does not change), and losing track of the location of an object.

Loans

The model makes a distinction between the transfer of legal ownership and the transfer of custody of an object (e.g. by losing the object or loaning it out for an exhibition). If the possession of the object is temporary, such that the object would be given back to the real owner at the end of that possession without what might be considered a sale or exchange, then it is a transfer of custody. Note that the provenance activity here does not represent the entire duration of the change in custody, only the transfer of it. Just like acquisitions, there would be a second provenance activity that would transfer the custody back to the original custodian or on to some other party.

Long term loans or even "permanent" loans are just open ended pairs of activities -- the object has had its custody transferred, and the object has not been returned yet.

In the model, these transfers of custody use a different class, TransferOfCustody instead of Acquisition. The properties that capture the parties and object involved are also different, although equivalent, to those of Acquisition: transferred_custody_of the object, transferred_custody_from the previous custodian, and transferred_custody_to the new custodian.

Example:

A sculpture is lent from one person to another, and then later returned.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/16",
  "type": "Activity",
  "_label": "Lending a Sculpture to Recipient",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "TransferOfCustody",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300417645",
          "type": "Type",
          "_label": "Loan"
        }
      ],
      "transferred_custody_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_custody_from": [
        {
          "type": "Person",
          "_label": "Lender"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Person",
          "_label": "Recipient"
        }
      ]
    }
  ]
}

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(provenance16) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Lending a Sculpture to Recipient''") 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[TransferOfCustody] class O3_0 classstyle; O4(aat:300417645) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Loan''") class O4_3 literal; O3-- classified_as -->O4 O5( _ ) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_2("''Sculpture''") class O5_2 literal; O6(aat:300047090) class O6 type; O6-- type -->O6_0[Type] class O6_0 classstyle; O6-- _label -->O6_3("''Sculpture''") class O6_3 literal; O7(aat:300435443) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Type of Work''") class O7_3 literal; O6-- classified_as -->O7 O5-- classified_as -->O6 O8(aat:300133025) class O8 type; O8-- type -->O8_0[Type] class O8_0 classstyle; O8-- _label -->O8_3("''Artwork''") class O8_3 literal; O5-- classified_as -->O8 O3-- transferred_custody_of -->O5 O9( _ ) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_2("''Lender''") class O9_2 literal; O3-- transferred_custody_from -->O9 O10( _ ) class O10 actor; O10-- type -->O10_0[Person] class O10_0 classstyle; O10-- _label -->O10_2("''Recipient''") class O10_2 literal; O3-- transferred_custody_to -->O10 O1-- part -->O3
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Which would typically be followed by a later return with the same form:

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/17",
  "type": "Activity",
  "_label": "Return of the Sculpture to Lender",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "TransferOfCustody",
      "_label": "Return",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300438467",
          "type": "Type",
          "_label": "Return of Loan"
        }
      ],
      "transferred_custody_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_custody_from": [
        {
          "type": "Person",
          "_label": "Recipient"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Person",
          "_label": "Lender"
        }
      ]
    }
  ]
}

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(provenance17) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Return of the Sculpture to Lender''") 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[TransferOfCustody] class O3_0 classstyle; O3-- _label -->O3_2("''Return''") class O3_2 literal; O4(aat:300438467) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Return of Loan''") class O4_3 literal; O3-- classified_as -->O4 O5( _ ) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_2("''Sculpture''") class O5_2 literal; O6(aat:300047090) class O6 type; O6-- type -->O6_0[Type] class O6_0 classstyle; O6-- _label -->O6_3("''Sculpture''") class O6_3 literal; O7(aat:300435443) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Type of Work''") class O7_3 literal; O6-- classified_as -->O7 O5-- classified_as -->O6 O8(aat:300133025) class O8 type; O8-- type -->O8_0[Type] class O8_0 classstyle; O8-- _label -->O8_3("''Artwork''") class O8_3 literal; O5-- classified_as -->O8 O3-- transferred_custody_of -->O5 O9( _ ) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_2("''Recipient''") class O9_2 literal; O3-- transferred_custody_from -->O9 O10( _ ) class O10 actor; O10-- type -->O10_0[Person] class O10_0 classstyle; O10-- _label -->O10_2("''Lender''") class O10_2 literal; O3-- transferred_custody_to -->O10 O1-- part -->O3
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Institutional Ownership, Departmental Custody

Objects are owned by legal entities, such as museum organizations or individual people. However there may be more information about which department is responsible within a museum for the curation of the object. This is the division between acquisitions (the legal ownership of the object) and custody (the responsibility for looking after the object). If the department is known, then it should be either part of the Provenance Event in which the object is acquired, or a separate provenance event if the object was not accessioned by a department and later came under their care, or was transferred between departments. In these latter cases, the ownership does not change, only the custody of the object.

The department becomes the current_keeper of the object, whereas the institution is the current_owner, as described in the object section. The transfer model is otherwise identical to other transfers of custody.

Example:

An object is acquired by the museum and the custody of the painting is transferred to a particular department.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/18",
  "type": "Activity",
  "_label": "Purchase of Painting",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "Acquisition",
      "_label": "Acquisition of Painting",
      "transferred_title_of": [
        {
          "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"
        }
      ],
      "transferred_title_to": [
        {
          "type": "Group",
          "_label": "Museum",
          "classified_as": [
            {
              "id": "http://vocab.getty.edu/aat/300312281",
              "type": "Type",
              "_label": "Museum"
            }
          ]
        }
      ]
    },
    {
      "type": "TransferOfCustody",
      "_label": "Custody by Department",
      "transferred_custody_of": [
        {
          "type": "HumanMadeObject",
          "_label": "Painting"
        }
      ],
      "transferred_custody_from": [
        {
          "type": "Person",
          "_label": "Seller"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Group",
          "_label": "Paintings Department of Museum",
          "classified_as": [
            {
              "id": "http://vocab.getty.edu/aat/300263534",
              "type": "Type",
              "_label": "Department"
            }
          ]
        }
      ]
    }
  ]
}

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(provenance18) 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 event; O3-- type -->O3_0[Acquisition] class O3_0 classstyle; O3-- _label -->O3_2("''Acquisition of Painting''") class O3_2 literal; O4( _ ) class O4 object; O4-- type -->O4_0[HumanMadeObject] class O4_0 classstyle; O4-- _label -->O4_2("''Painting''") class O4_2 literal; O5(aat:300033618) class O5 type; O5-- type -->O5_0[Type] class O5_0 classstyle; O5-- _label -->O5_3("''Painting''") class O5_3 literal; O6(aat:300435443) class O6 type; O6-- type -->O6_0[Type] class O6_0 classstyle; O6-- _label -->O6_3("''Type of Work''") class O6_3 literal; O5-- classified_as -->O6 O4-- classified_as -->O5 O7(aat:300133025) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Artwork''") class O7_3 literal; O4-- classified_as -->O7 O3-- transferred_title_of -->O4 O8( _ ) class O8 actor; O8-- type -->O8_0[Person] class O8_0 classstyle; O8-- _label -->O8_2("''Seller''") class O8_2 literal; O3-- transferred_title_from -->O8 O9( _ ) class O9 actor; O9-- type -->O9_0[Group] class O9_0 classstyle; O9-- _label -->O9_2("''Museum''") class O9_2 literal; O10(aat:300312281) class O10 type; O10-- type -->O10_0[Type] class O10_0 classstyle; O10-- _label -->O10_3("''Museum''") class O10_3 literal; O9-- classified_as -->O10 O3-- transferred_title_to -->O9 O1-- part -->O3 O11( _ ) class O11 event; O11-- type -->O11_0[TransferOfCustody] class O11_0 classstyle; O11-- _label -->O11_2("''Custody by Department''") class O11_2 literal; O12( _ ) class O12 object; O12-- type -->O12_0[HumanMadeObject] class O12_0 classstyle; O12-- _label -->O12_2("''Painting''") class O12_2 literal; O11-- transferred_custody_of -->O12 O13( _ ) class O13 actor; O13-- type -->O13_0[Person] class O13_0 classstyle; O13-- _label -->O13_2("''Seller''") class O13_2 literal; O11-- transferred_custody_from -->O13 O14( _ ) class O14 actor; O14-- type -->O14_0[Group] class O14_0 classstyle; O14-- _label -->O14_2("''Paintings Department of Museum''") class O14_2 literal; O15(aat:300263534) class O15 type; O15-- type -->O15_0[Type] class O15_0 classstyle; O15-- _label -->O15_3("''Department''") class O15_3 literal; O14-- classified_as -->O15 O11-- transferred_custody_to -->O14 O1-- part -->O11
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Loss

The loss of an object is the transfer of custody away from its current owner, without stating a recipient. In the future, if the object is discovered, the recipient might be able to be filled in. If the object is then returned to the owner, there would be the reverse transfer of custody from the party that found it. It might be that the owner simply loses track of it, and although it is still in their possession, they are not aware of it ... it has no custodian, but it has not moved and the owner still owns it.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/19",
  "type": "Activity",
  "_label": "Loss of Painting",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "TransferOfCustody",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300417655",
          "type": "Type",
          "_label": "Loss"
        }
      ],
      "timespan": {
        "type": "TimeSpan",
        "_label": "Time noticed as Lost",
        "begin_of_the_begin": "1790-12-04T00:00:00Z",
        "end_of_the_end": "1790-12-05T00:00:00Z"
      },
      "transferred_custody_of": [
        {
          "type": "HumanMadeObject",
          "_label": "Lost 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_custody_from": [
        {
          "type": "Person",
          "_label": "Owner"
        }
      ]
    }
  ]
}

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(provenance19) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Loss 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[TransferOfCustody] class O3_0 classstyle; O4(aat:300417655) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Loss''") class O4_3 literal; O3-- classified_as -->O4 O5( _ ) class O5 timespan; O5-- type -->O5_0[TimeSpan] class O5_0 classstyle; O5-- _label -->O5_2("''Time noticed as Lost''") class O5_2 literal; O5-- begin_of_the_begin -->O5_3("''1790-12-04T00:00:00Z''") class O5_3 literal; O5-- end_of_the_end -->O5_4("''1790-12-05T00:00:00Z''") class O5_4 literal; O3-- timespan -->O5 O6( _ ) class O6 object; O6-- type -->O6_0[HumanMadeObject] class O6_0 classstyle; O6-- _label -->O6_2("''Lost Painting''") class O6_2 literal; O7(aat:300033618) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Painting''") class O7_3 literal; O8(aat:300435443) class O8 type; O8-- type -->O8_0[Type] class O8_0 classstyle; O8-- _label -->O8_3("''Type of Work''") class O8_3 literal; O7-- classified_as -->O8 O6-- classified_as -->O7 O9(aat:300133025) class O9 type; O9-- type -->O9_0[Type] class O9_0 classstyle; O9-- _label -->O9_3("''Artwork''") class O9_3 literal; O6-- classified_as -->O9 O3-- transferred_custody_of -->O6 O10( _ ) class O10 actor; O10-- type -->O10_0[Person] class O10_0 classstyle; O10-- _label -->O10_2("''Owner''") class O10_2 literal; O3-- transferred_custody_from -->O10 O1-- part -->O3
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Theft

The theft of an object is also the (illegal) transfer of custody of the object, rather than a transfer of ownership. If the stolen object were recovered, then it would be restored to its owner. Stolen, or looted as a special case of theft, objects and their repatriation are an interesting and important part of the provenance of a work and frequently contested.

A single theft event might involve stealing multiple objects, in the same way that the purchase of an auction lot might involve the acquisition of multiple objects for a combined payment.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/20",
  "type": "Activity",
  "_label": "Theft of Two Paintings",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "TransferOfCustody",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055292",
          "type": "Type",
          "_label": "Theft"
        }
      ],
      "transferred_custody_of": [
        {
          "type": "HumanMadeObject",
          "_label": "Stolen 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_custody_from": [
        {
          "type": "Person",
          "_label": "Owner"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Person",
          "_label": "Thief"
        }
      ]
    },
    {
      "type": "TransferOfCustody",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300055292",
          "type": "Type",
          "_label": "Theft"
        }
      ],
      "transferred_custody_of": [
        {
          "type": "HumanMadeObject",
          "_label": "Stolen Painting 2",
          "classified_as": [
            {
              "id": "http://vocab.getty.edu/aat/300033618",
              "type": "Type",
              "_label": "Painting"
            },
            {
              "id": "http://vocab.getty.edu/aat/300133025",
              "type": "Type",
              "_label": "Artwork"
            }
          ]
        }
      ],
      "transferred_custody_from": [
        {
          "type": "Person",
          "_label": "Owner"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Person",
          "_label": "Thief"
        }
      ]
    }
  ]
}

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(provenance20) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Theft of Two Paintings''") 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[TransferOfCustody] class O3_0 classstyle; O4(aat:300055292) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Theft''") class O4_3 literal; O3-- classified_as -->O4 O5( _ ) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_2("''Stolen Painting''") class O5_2 literal; O6(aat:300033618) class O6 type; O6-- type -->O6_0[Type] class O6_0 classstyle; O6-- _label -->O6_3("''Painting''") class O6_3 literal; O7(aat:300435443) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Type of Work''") class O7_3 literal; O6-- classified_as -->O7 O5-- classified_as -->O6 O8(aat:300133025) class O8 type; O8-- type -->O8_0[Type] class O8_0 classstyle; O8-- _label -->O8_3("''Artwork''") class O8_3 literal; O5-- classified_as -->O8 O3-- transferred_custody_of -->O5 O9( _ ) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_2("''Owner''") class O9_2 literal; O3-- transferred_custody_from -->O9 O10( _ ) class O10 actor; O10-- type -->O10_0[Person] class O10_0 classstyle; O10-- _label -->O10_2("''Thief''") class O10_2 literal; O3-- transferred_custody_to -->O10 O1-- part -->O3 O11( _ ) class O11 event; O11-- type -->O11_0[TransferOfCustody] class O11_0 classstyle; O11-- classified_as -->O4 O12( _ ) class O12 object; O12-- type -->O12_0[HumanMadeObject] class O12_0 classstyle; O12-- _label -->O12_2("''Stolen Painting 2''") class O12_2 literal; O12-- classified_as -->O6 O12-- classified_as -->O8 O11-- transferred_custody_of -->O12 O13( _ ) class O13 actor; O13-- type -->O13_0[Person] class O13_0 classstyle; O13-- _label -->O13_2("''Owner''") class O13_2 literal; O11-- transferred_custody_from -->O13 O14( _ ) class O14 actor; O14-- type -->O14_0[Person] class O14_0 classstyle; O14-- _label -->O14_2("''Thief''") class O14_2 literal; O11-- transferred_custody_to -->O14 O1-- part -->O11
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Sale of Stolen or Looted Objects

If a stolen object is sold, then that purchase is actually just a transfer of custody in exchange for money (or other payment). Typically, of course, the nature of that transaction is not discovered until long after the fact. This can then have many effects on the provenance record for the object as suddenly many acquisitions would be retroactively changed to being transfers of custody. This updating of the historical record is necessary without going to great lengths to model the belief that an acquisition is legal for the vast majority of cases when it is, indeed, legal in order to allow that belief to be incorrect for the few times when it is not.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/21",
  "type": "Activity",
  "_label": "Unknowing Purchase of Stolen Painting",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "TransferOfCustody",
      "_label": "Obtaining Painting",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/xxx",
          "type": "Type",
          "_label": "Sale of Stolen Goods"
        }
      ],
      "transferred_custody_of": [
        {
          "type": "HumanMadeObject",
          "_label": "Stolen 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_custody_from": [
        {
          "type": "Person",
          "_label": "Thief"
        }
      ],
      "transferred_custody_to": [
        {
          "type": "Group",
          "_label": "Museum",
          "classified_as": [
            {
              "id": "http://vocab.getty.edu/aat/300312281",
              "type": "Type",
              "_label": "Museum"
            }
          ]
        }
      ]
    },
    {
      "type": "Payment",
      "paid_amount": {
        "type": "MonetaryAmount",
        "_label": "Payment to Thief",
        "value": 10000,
        "currency": {
          "id": "http://vocab.getty.edu/aat/300411998",
          "type": "Currency",
          "_label": "British Pounds"
        }
      },
      "paid_from": [
        {
          "type": "Group",
          "_label": "Museum"
        }
      ],
      "paid_to": [
        {
          "type": "Person",
          "_label": "Thief"
        }
      ]
    }
  ]
}

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(provenance21) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Unknowing Purchase of Stolen 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[TransferOfCustody] class O3_0 classstyle; O3-- _label -->O3_2("''Obtaining Painting''") class O3_2 literal; O4(aat:xxx) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Sale of Stolen Goods''") class O4_3 literal; O3-- classified_as -->O4 O5( _ ) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_2("''Stolen Painting''") class O5_2 literal; O6(aat:300033618) class O6 type; O6-- type -->O6_0[Type] class O6_0 classstyle; O6-- _label -->O6_3("''Painting''") class O6_3 literal; O7(aat:300435443) class O7 type; O7-- type -->O7_0[Type] class O7_0 classstyle; O7-- _label -->O7_3("''Type of Work''") class O7_3 literal; O6-- classified_as -->O7 O5-- classified_as -->O6 O8(aat:300133025) class O8 type; O8-- type -->O8_0[Type] class O8_0 classstyle; O8-- _label -->O8_3("''Artwork''") class O8_3 literal; O5-- classified_as -->O8 O3-- transferred_custody_of -->O5 O9( _ ) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_2("''Thief''") class O9_2 literal; O3-- transferred_custody_from -->O9 O10( _ ) class O10 actor; O10-- type -->O10_0[Group] class O10_0 classstyle; O10-- _label -->O10_2("''Museum''") class O10_2 literal; O11(aat:300312281) class O11 type; O11-- type -->O11_0[Type] class O11_0 classstyle; O11-- _label -->O11_3("''Museum''") class O11_3 literal; O10-- classified_as -->O11 O3-- transferred_custody_to -->O10 O1-- part -->O3 O12( _ ) class O12 event; O12-- type -->O12_0[Payment] class O12_0 classstyle; O13( _ ) class O13 dims; O13-- type -->O13_0[MonetaryAmount] class O13_0 classstyle; O13-- _label -->O13_2("''Payment to Thief''") class O13_2 literal; O13-- value -->O13_3(10000) class O13_3 literal; O14(aat:300411998) class O14 type; O14-- type -->O14_0[Currency] class O14_0 classstyle; O14-- _label -->O14_3("''British Pounds''") class O14_3 literal; O13-- currency -->O14 O12-- paid_amount -->O13 O15( _ ) class O15 actor; O15-- type -->O15_0[Group] class O15_0 classstyle; O15-- _label -->O15_2("''Museum''") class O15_2 literal; O12-- paid_from -->O15 O16( _ ) class O16 actor; O16-- type -->O16_0[Person] class O16_0 classstyle; O16-- _label -->O16_2("''Thief''") class O16_2 literal; O12-- paid_to -->O16 O1-- part -->O12
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Exhibitions

Exhibitions are a common way that the custody of an object changes, while the ownership remains the same. Exhibitions are described in more detail here.