Table of Contents
Introduction
Tracking the provenance of an object is described in detail in the Provenance section of the model. This section describes how to link the object's description into those events and entities.
Production
In the same way that the Production
event can reference the object that it produced
, the object can reference its Production
with produced_by
. The example below includes the artist's details in carried_out_by
, but might also include all of the other properties of the event. The modeling details for the events are described in the Provenance section.
{ "@context": "https://linked.art/ns/v1/linked-art.json", "id": "https://linked.art/example/object/61", "type": "ManMadeObject", "label": "Painting", "classified_as": [ { "id": "http://vocab.getty.edu/aat/300033618", "type": "Type", "label": "Painting" }, { "id": "http://vocab.getty.edu/aat/300133025", "type": "Type", "label": "Artwork" } ], "produced_by": { "id": "https://linked.art/example/activity/31", "type": "Production", "label": "Production of Painting", "carried_out_by": [ { "id": "https://linked.art/example/person/23", "type": "Person", "label": "Artist" } ] } }
JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)
Ownership
The current owner of the object should be referenced with transferred_title_to
in the most recent Acquisition
that transferred_title_of
the object. To make this easier to find from the object's description, the owner should also be referenced with current_owner
from the object itself. The URI of the event in which the object was acquired, via the acquired_title_through
property, can be included to let systems start to trace provenance events. There are further modeling details available about People and Orgaizations that might own objects.
{ "@context": "https://linked.art/ns/v1/linked-art.json", "id": "https://linked.art/example/object/62", "type": "ManMadeObject", "label": "Painting", "classified_as": [ { "id": "http://vocab.getty.edu/aat/300033618", "type": "Type", "label": "Painting" }, { "id": "http://vocab.getty.edu/aat/300133025", "type": "Type", "label": "Artwork" } ], "current_owner": { "id": "https://linked.art/example/group/16", "type": "Group", "label": "Museum", "classified_as": [ { "id": "http://vocab.getty.edu/aat/300312281", "type": "Type", "label": "Museum" } ], "acquired_title_through": [ { "id": "https://linked.art/example/activity/32", "type": "Acquisition", "label": "Acquisition of Painting" } ] } }
JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)
Location
The current location of the object is given using the current_location
property. This can give a reference to a gallery or specific part of a facility, or be used for the general address of the organization where the object is currently held. There are further modeling details available about Places.
{ "@context": "https://linked.art/ns/v1/linked-art.json", "id": "https://linked.art/example/object/63", "type": "ManMadeObject", "label": "Painting", "classified_as": [ { "id": "http://vocab.getty.edu/aat/300033618", "type": "Type", "label": "Painting" }, { "id": "http://vocab.getty.edu/aat/300133025", "type": "Type", "label": "Artwork" } ], "current_location": { "id": "https://linked.art/example/place/8", "type": "Place", "label": "Gallery W6" } }
JSON-LD (Raw) | JSON-LD (Playground) | Turtle (Raw) | Turtle (Styled)