Object Acquisition and Loan

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.

Example:

Oliver Payne acquired Spring from the Durand-Ruel Gallery in New York in 1909

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/durand_payne/1",
  "type": "Activity",
  "_label": "Purchase of Spring by Payne",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "identified_by": [
    {
      "type": "Name",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300404670",
          "type": "Type",
          "_label": "Primary Name"
        }
      ],
      "content": "Purchase of Spring by Payne from Durand-Ruel"
    }
  ],
  "timespan": {
    "type": "TimeSpan",
    "begin_of_the_begin": "1909-01-01T00:00:00Z",
    "end_of_the_end": "1909-12-31T23:59:59Z"
  },
  "part": [
    {
      "type": "Acquisition",
      "_label": "Ownership of Spring to Payne",
      "transferred_title_of": [
        {
          "id": "https://linked.art/example/object/spring",
          "type": "HumanMadeObject",
          "_label": "Spring"
        }
      ],
      "transferred_title_from": [
        {
          "id": "https://linked.art/example/person/durand",
          "type": "Person",
          "_label": "Durand-Ruel Gallery"
        }
      ],
      "transferred_title_to": [
        {
          "id": "https://linked.art/example/person/payne",
          "type": "Person",
          "_label": "Oliver Payne"
        }
      ]
    }
  ]
}

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/durand_payne/1) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Purchase of Spring by Payne''") 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[Name] class O3_0 classstyle; O4(aat:300404670) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Primary Name''") class O4_3 literal; O3-- classified_as -->O4 O3-- content -->O3_3("''Purchase of Spring by Payne from Durand-Ruel''") 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("''1909-01-01T00:00:00Z''") class O5_2 literal; O5-- end_of_the_end -->O5_3("''1909-12-31T23:59:59Z''") class O5_3 literal; O1-- timespan -->O5 O6( _ ) class O6 event; O6-- type -->O6_0[Acquisition] class O6_0 classstyle; O6-- _label -->O6_2("''Ownership of Spring to Payne''") class O6_2 literal; O7(object/spring) class O7 object; O7-- type -->O7_0[HumanMadeObject] class O7_0 classstyle; O7-- _label -->O7_3("''Spring''") class O7_3 literal; O6-- transferred_title_of -->O7 O8(person/durand) class O8 actor; O8-- type -->O8_0[Person] class O8_0 classstyle; O8-- _label -->O8_3("''Durand-Ruel Gallery''") class O8_3 literal; O6-- transferred_title_from -->O8 O9(person/payne) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_3("''Oliver Payne''") class O9_3 literal; O6-- transferred_title_to -->O9 O1-- part -->O6
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

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.

Example:

The Yale University Art Gallery and the Yale Center for British Art jointly purchased a painting by Kehinde Wiley in 2021 from undisclosed seller.

top = vocab.ProvenanceEntry(ident="yuag_ycba_wiley/1", label="Purchase of Painting")
ts = model.TimeSpan()
ts.begin_of_the_begin = "2021-01-01T00:00:00Z"
ts.end_of_the_end = "2021-12-31T23:59:59Z"
top.timespan = ts
acq = model.Acquisition(label=<abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true"><abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true"><abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true"><abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true"><abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true"><abbr  data-ot="crm:E8_Acquisition" data-ot-title="Core Linked Data Term" data-ot-fixed="true">"Acquisition"</abbr></abbr></abbr></abbr></abbr></abbr>)
top.part = acq
acq.transferred_title_of = model.HumanMadeObject(ident="yiadom-boakye", label="Portrait of Lynette Yiadom-Boakye")
acq.transferred_title_to = model.Group(ident="yuag", label="Yale University Art Gallery")
acq.transferred_title_to = model.Group(ident="ycba", label="Yale Center for British Art")

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.

Example:

In 2014, the family heirs of Oliver Payne sold Spring (by auction at Christie's) to Otto Naumann, acting for the J. Paul Getty Museum.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/payneheirs_getty/1",
  "type": "Activity",
  "_label": "Purchase of Spring for Getty",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "Acquisition",
      "_label": "Acquisition of Spring",
      "carried_out_by": [
        {
          "id": "https://linked.art/example/person/naumann",
          "type": "Person",
          "_label": "Otto Naumann"
        }
      ],
      "transferred_title_of": [
        {
          "id": "https://linked.art/example/object/spring",
          "type": "HumanMadeObject",
          "_label": "Spring"
        }
      ],
      "transferred_title_from": [
        {
          "id": "https://linked.art/example/group/payne_heirs",
          "type": "Group",
          "_label": "Family of Oliver Payne"
        }
      ],
      "transferred_title_to": [
        {
          "id": "https://linked.art/example/group/getty",
          "type": "Group",
          "_label": "J. Paul Getty Museum"
        }
      ]
    }
  ]
}

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/payneheirs_getty/1) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Purchase of Spring for Getty''") 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 Spring''") class O3_2 literal; O4(person/naumann) class O4 actor; O4-- type -->O4_0[Person] class O4_0 classstyle; O4-- _label -->O4_3("''Otto Naumann''") class O4_3 literal; O3-- carried_out_by -->O4 O5(object/spring) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_3("''Spring''") class O5_3 literal; O3-- transferred_title_of -->O5 O6(group/payne_heirs) class O6 actor; O6-- type -->O6_0[Group] class O6_0 classstyle; O6-- _label -->O6_3("''Family of Oliver Payne''") class O6_3 literal; O3-- transferred_title_from -->O6 O7(group/getty) class O7 actor; O7-- type -->O7_0[Group] class O7_0 classstyle; O7-- _label -->O7_3("''J. Paul Getty Museum''") class O7_3 literal; O3-- transferred_title_to -->O7 O1-- part -->O3
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

Exchange of Objects

This pattern allows for the exchange of objects between two parties by simply adding a second Acquisition.

Example:

In 1962, the Yale University Art Gallery exchanged a "Nude Woman" by Beckmann for a "Personnages dans un parc" by Masson.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/yuag_stora/1",
  "type": "Activity",
  "_label": "Exchange of Objects",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "part": [
    {
      "type": "Acquisition",
      "_label": "Acquisition of Personnages",
      "transferred_title_of": [
        {
          "id": "https://linked.art/example/object/masson_personnages",
          "type": "HumanMadeObject",
          "_label": "Personnages dans un parc"
        },
        {
          "id": "https://linked.art/example/object/beckmann_nude",
          "type": "HumanMadeObject",
          "_label": "Nude Woman by Beckmann"
        }
      ],
      "transferred_title_from": [
        {
          "id": "https://linked.art/example/group/feigen",
          "type": "Group",
          "_label": "Richard Feigen Gallery"
        },
        {
          "id": "https://linked.art/example/group/yuag",
          "type": "Group",
          "_label": "Yale University Art Gallery"
        }
      ],
      "transferred_title_to": [
        {
          "id": "https://linked.art/example/group/yuag",
          "type": "Group",
          "_label": "Yale University Art Gallery"
        },
        {
          "id": "https://linked.art/example/group/feigen",
          "type": "Group",
          "_label": "Richard Feigen Gallery"
        }
      ]
    },
    {
      "type": "Acquisition",
      "_label": "Acquisition of Nude"
    }
  ]
}

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/yuag_stora/1) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Exchange of Objects''") 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 Personnages''") class O3_2 literal; O4(object/masson_personnages) class O4 object; O4-- type -->O4_0[HumanMadeObject] class O4_0 classstyle; O4-- _label -->O4_3("''Personnages dans un parc''") class O4_3 literal; O3-- transferred_title_of -->O4 O5(object/beckmann_nude) class O5 object; O5-- type -->O5_0[HumanMadeObject] class O5_0 classstyle; O5-- _label -->O5_3("''Nude Woman by Beckmann''") class O5_3 literal; O3-- transferred_title_of -->O5 O6(group/feigen) class O6 actor; O6-- type -->O6_0[Group] class O6_0 classstyle; O6-- _label -->O6_3("''Richard Feigen Gallery''") class O6_3 literal; O3-- transferred_title_from -->O6 O7(group/yuag) class O7 actor; O7-- type -->O7_0[Group] class O7_0 classstyle; O7-- _label -->O7_3("''Yale University Art Gallery''") class O7_3 literal; O3-- transferred_title_from -->O7 O3-- transferred_title_to -->O7 O3-- transferred_title_to -->O6 O1-- part -->O3 O8( _ ) class O8 event; O8-- type -->O8_0[Acquisition] class O8_0 classstyle; O8-- _label -->O8_2("''Acquisition of Nude''") class O8_2 literal; O1-- part -->O8
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

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.

Example:

Édouard Manet sold his painting, Jeanne, to Antonin Proust in 1883 for 3,000 francs.

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/manet_proust/1",
  "type": "Activity",
  "_label": "Purchase of Spring by Proust",
  "classified_as": [
    {
      "id": "http://vocab.getty.edu/aat/300055863",
      "type": "Type",
      "_label": "Provenance Activity"
    }
  ],
  "identified_by": [
    {
      "type": "Name",
      "classified_as": [
        {
          "id": "http://vocab.getty.edu/aat/300404670",
          "type": "Type",
          "_label": "Primary Name"
        }
      ],
      "content": "Purchase of Spring by Proust from Manet"
    }
  ],
  "timespan": {
    "type": "TimeSpan",
    "begin_of_the_begin": "1881-01-01T00:00:00Z",
    "end_of_the_end": "1883-12-31T23:59:59Z"
  },
  "part": [
    {
      "type": "Acquisition",
      "_label": "Ownership of Spring to Proust",
      "transferred_title_of": [
        {
          "id": "https://linked.art/example/object/spring",
          "type": "HumanMadeObject",
          "_label": "Spring"
        }
      ],
      "transferred_title_from": [
        {
          "id": "https://linked.art/example/person/manet",
          "type": "Person",
          "_label": "Manet"
        }
      ],
      "transferred_title_to": [
        {
          "id": "https://linked.art/example/person/proust",
          "type": "Person",
          "_label": "Proust"
        }
      ]
    },
    {
      "type": "Payment",
      "_label": "3000 Francs to Manet",
      "paid_amount": {
        "type": "MonetaryAmount",
        "value": 3000,
        "currency": {
          "id": "http://vocab.getty.edu/aat/300412016",
          "type": "Currency",
          "_label": "French Francs"
        }
      },
      "paid_from": [
        {
          "id": "https://linked.art/example/person/proust",
          "type": "Person",
          "_label": "Proust"
        }
      ],
      "paid_to": [
        {
          "id": "https://linked.art/example/person/manet",
          "type": "Person",
          "_label": "Manet"
        }
      ]
    }
  ]
}

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/manet_proust/1) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Purchase of Spring by Proust''") 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[Name] class O3_0 classstyle; O4(aat:300404670) class O4 type; O4-- type -->O4_0[Type] class O4_0 classstyle; O4-- _label -->O4_3("''Primary Name''") class O4_3 literal; O3-- classified_as -->O4 O3-- content -->O3_3("''Purchase of Spring by Proust from Manet''") 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("''1881-01-01T00:00:00Z''") class O5_2 literal; O5-- end_of_the_end -->O5_3("''1883-12-31T23:59:59Z''") class O5_3 literal; O1-- timespan -->O5 O6( _ ) class O6 event; O6-- type -->O6_0[Acquisition] class O6_0 classstyle; O6-- _label -->O6_2("''Ownership of Spring to Proust''") class O6_2 literal; O7(object/spring) class O7 object; O7-- type -->O7_0[HumanMadeObject] class O7_0 classstyle; O7-- _label -->O7_3("''Spring''") class O7_3 literal; O6-- transferred_title_of -->O7 O8(person/manet) class O8 actor; O8-- type -->O8_0[Person] class O8_0 classstyle; O8-- _label -->O8_3("''Manet''") class O8_3 literal; O6-- transferred_title_from -->O8 O9(person/proust) class O9 actor; O9-- type -->O9_0[Person] class O9_0 classstyle; O9-- _label -->O9_3("''Proust''") class O9_3 literal; O6-- transferred_title_to -->O9 O1-- part -->O6 O10( _ ) class O10 event; O10-- type -->O10_0[Payment] class O10_0 classstyle; O10-- _label -->O10_2("''3000 Francs to Manet''") class O10_2 literal; O11( _ ) class O11 dims; O11-- type -->O11_0[MonetaryAmount] class O11_0 classstyle; O11-- value -->O11_2(3000) class O11_2 literal; O12(aat:300412016) class O12 type; O12-- type -->O12_0[Currency] class O12_0 classstyle; O12-- _label -->O12_3("''French Francs''") class O12_3 literal; O11-- currency -->O12 O10-- paid_amount -->O11 O10-- paid_from -->O9 O10-- paid_to -->O8 O1-- part -->O10
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)

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 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:

FIXME: Find a real example

{
  "@context": "https://linked.art/ns/v1/linked-art.json",
  "id": "https://linked.art/example/provenance/fixme/1",
  "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)"
            }
          ]
        }
      ]
    }
  ]
}

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/fixme/1) class O1 event; O1-- type -->O1_0[Activity] class O1_0 classstyle; O1-- _label -->O1_4("''Purchase of Sculpture with Commission''") 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[Payment] class O3_0 classstyle; O4( _ ) class O4 dims; O4-- type -->O4_0[MonetaryAmount] class O4_0 classstyle; O4-- value -->O4_2(900) class O4_2 literal; O5(aat:300411994) class O5 type; O5-- type -->O5_0[Currency] class O5_0 classstyle; O5-- _label -->O5_3("''US Dollars''") class O5_3 literal; O4-- currency -->O5 O3-- paid_amount -->O4 O6( _ ) class O6 actor; O6-- type -->O6_0[Person] class O6_0 classstyle; O6-- _label -->O6_2("''Buyer''") class O6_2 literal; O3-- paid_from -->O6 O7( _ ) class O7 actor; O7-- type -->O7_0[Person] class O7_0 classstyle; O7-- _label -->O7_2("''Seller''") class O7_2 literal; O3-- paid_to -->O7 O1-- part -->O3 O8( _ ) class O8 event; O8-- type -->O8_0[Payment] class O8_0 classstyle; O9(aat:300393199) class O9 type; O9-- type -->O9_0[Type] class O9_0 classstyle; O9-- _label -->O9_3("''Commission''") class O9_3 literal; O8-- classified_as -->O9 O10( _ ) class O10 dims; O10-- type -->O10_0[MonetaryAmount] class O10_0 classstyle; O10-- value -->O10_2(100) class O10_2 literal; O10-- currency -->O5 O8-- paid_amount -->O10 O11( _ ) class O11 actor; O11-- type -->O11_0[Person] class O11_0 classstyle; O11-- _label -->O11_2("''Buyer''") class O11_2 literal; O8-- paid_from -->O11 O12( _ ) class O12 actor; O12-- type -->O12_0[Group] class O12_0 classstyle; O12-- _label -->O12_2("''Auction House''") class O12_2 literal; O13(aat:300417515) class O13 type; O13-- type -->O13_0[Type] class O13_0 classstyle; O13-- _label -->O13_3("''Auction House (organization)''") class O13_3 literal; O12-- classified_as -->O13 O8-- paid_to -->O12 O1-- part -->O8
Other Representations: JSON-LD (raw) | JSON-LD (playground) | Turtle (raw) | Turtle (styled)