Table of Contents
Introduction
This section covers the beginning and ending of objects' existence, along with the attribution of the artist to the production of the object.
Object Creation
The first activity in an object's provenance or lifecycle is its creation, or Production
. The relationship to the object that was produced by the activity (produced
) is added to the general activity model, along with the time, location and actors.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/38", "type": "Production", "produced": [ { "id": "https://linked.art/example/object/61", "type": "ManMadeObject", "label": "Example Painting", "classified_as": ["aat:300033618","aat:300133025"] } ], "took_place_at": [ { "id": "https://linked.art/example/place/10", "type": "Place", "label": "Example Artist's Studio" } ], "timespan": { "id": "https://linked.art/example/time/15", "type": "TimeSpan", "begin_of_the_begin": "1780-03-05T00:00:00Z", "end_of_the_end": "1780-03-06T00:00:00Z" }, "carried_out_by": [ { "id": "https://linked.art/example/actor/10", "type": "Actor", "label": "Example Artist" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Inspiration or Copies
Some artworks are copies of, or clearly directly inspired by, others. This relationship with another work can be captured with the influenced_by
property of the Production
activity. The copy could be from memory or with the copied object physically present, and it could be a faithful reproduction or merely recognizably similar.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/39", "type": "Production", "produced": [ { "id": "https://linked.art/example/object/62", "type": "ManMadeObject", "label": "Copy of Example Painting", "classified_as": ["aat:300033618","aat:300133025"] } ], "influenced_by": [ { "id": "https://linked.art/example/object/63", "type": "ManMadeObject", "label": "Example Painting", "classified_as": ["aat:300033618","aat:300133025"] } ], "carried_out_by": [ { "id": "https://linked.art/example/person/21", "type": "Person", "label": "Copyist" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Roles / Techniques
If there is a particular technique known to have been used in the creation of the object, for example glassblowing identified by aat:300053932, the identifier for the technique can be included as a classification of the activity.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/40", "type": "Production", "classified_as": ["aat:300053932"], "carried_out_by": [ { "id": "https://linked.art/example/actor/11", "type": "Actor", "label": "Example Glassblower" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Multiple Artists with Roles
If there are multiple artists collaborating, and they had individual roles or their work took place at different locations or over different time periods, then we follow the pattern of creating components of the main Production
activity. Each of the components captures the details of one particular artist's role in the production of the object. These components are instances of Activity
to make it easier to distinguish between the Production
of the object overall and the activities that happened as part of that. For example, a sculpture that is painted by another artist, would be produced by the overall activity, with two components one for each artist's role.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/41", "type": "Production", "consists_of": [ { "id": "https://linked.art/example/activity/42", "type": "Activity", "classified_as": ["aat:300264383"], "carried_out_by": [ { "id": "https://linked.art/example/actor/12", "type": "Actor", "label": "Example Sculptor" } ] }, { "id": "https://linked.art/example/activity/43", "type": "Activity", "classified_as": ["aat:300161986"], "carried_out_by": [ { "id": "https://linked.art/example/actor/13", "type": "Actor", "label": "Example Sculpture Painter" } ] } ], "produced": [ { "id": "https://linked.art/example/object/65", "type": "ManMadeObject", "label": "Painted Sculpture", "classified_as": ["aat:300047090","aat:300133025"] } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Attribution of a Group
Even if the artist's or artists' identity is not known exactly, the person or persons may be known to have been part of a group, such as the workshop of a more famous "master". In this case, the Group
that represents the workshop can be the actor that carries out the Production
. The "master" of the workshop is represented as the Actor that carried out the Formation
of the Group
.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/44", "type": "Production", "produced": [ { "id": "https://linked.art/example/object/66", "type": "ManMadeObject", "label": "Example Painting, from workshop of Example Master", "classified_as": ["aat:300033618","aat:300133025"] } ], "carried_out_by": [ { "id": "https://linked.art/example/group/11", "type": "Group", "label": "Workshop of Example Master", "formed_by": { "id": "https://linked.art/example/Formation/0", "type": "Formation", "carried_out_by": [ { "id": "https://linked.art/example/person/22", "type": "Person", "label": "Example Master" } ] } } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Previous Attributions
Over time, attributions can be contested and change. The actor that is listed in carried_out_by
from the Production
should always be the one currently believed to have produced the art work. Previous attributions can be recorded using the AttributeAssignment
pattern, further described here.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/45", "type": "AttributeAssignment", "classified_as": ["aat:300056109"], "timespan": { "id": "https://linked.art/example/time/16", "type": "TimeSpan", "begin_of_the_begin": "1923-07-20", "end_of_the_end": "1923-07-21" }, "assigned": { "id": "https://linked.art/example/person/23", "type": "Person", "label": "Previously-Thought Artist" }, "assigned_to": { "id": "https://linked.art/example/object/67", "type": "ManMadeObject", "label": "Example Painting", "classified_as": ["aat:300033618","aat:300133025"] }, "carried_out_by": [ { "id": "https://linked.art/example/person/24", "type": "Person", "label": "Painting Curator" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
Destruction
The end of the provenance chain of an object is when it is known to have been destroyed. Loss of the object leaves the chain open ended as it might be recovered in the future, however if the object is destroyed then there is no coming back. Objects should, thus, only be recorded as destroyed if they are known to be so.
Objects are destroyed by events that are not carried out by an actor are modeled with the EndOfExistence
class. However if the destruction is carried out by some actor, then it is also an Activity
at the same time. This extra class must be added explicitly, and is a different model from Production
which is always an Activity
.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/46", "type": ["EndOfExistence","Activity"], "timespan": { "id": "https://linked.art/example/time/17", "type": "TimeSpan", "begin_of_the_begin": "1823-03-01T00:00:00Z", "end_of_the_end": "1823-03-31T00:00:00Z" }, "took_out_of_existence": [ { "id": "https://linked.art/example/object/68", "type": "ManMadeObject", "label": "Example Destroyed Painting", "classified_as": ["aat:300033618","aat:300133025"] } ], "carried_out_by": [ { "id": "https://linked.art/example/person/25", "type": "Person", "label": "Painting Destroyer" } ] }
Raw | Playground | Raw Turtle | Styled Turtle