Table of Contents
Introduction
It is useful for research to have access to historical information, such as which artist was previously believed to be the creator of a work, or previous valuations of an object. The majority of use cases, however, are to get the current information. The assignment of attributes model allows for this additional information to be associated, without making every property a list of historical values.
This pattern is also used for context-specific assertions, such as when an object is given a label or description for the purposes of an exhibition or other event. This exhibition label does not replace the owning museum's title, but is useful for historical comparison and research purposes.
Assignment of Attributes
The AttributeAssignment
class is an Activity
, carried out by curators or researchers, rather than by artists. It is then classified_as
an appropriate sort of activity for what is being assigned; assigning the artist to the Production
event of an object would be attribution or aat:300056109, for example. The general activity properties of carried_out_by
, timespan
and took_place_at
are available for when and where the assignment happened, and who made it. The timespan
is the moment when the assignment took place, rather than the length of time that the assignment was held to be true by some audience.
The value of the assignment is given using assigned
, and it must be a resource rather than a string or number. Thus an AttributeAssignment
can assign an Actor
to a Production
, or an Appellation
to an Actor
, but not a value
to an Appellation
. The resource that the value is being associated with is given using assigned_to
.
The example below demonstrates associating a previous title with an object.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/3", "type": "AttributeAssignment", "classified_as": ["aat:300411672"], "timespan": { "id": "https://linked.art/example/time/6", "type": "TimeSpan", "begin_of_the_begin": "1804-05-19", "end_of_the_end": "1804-05-19" }, "assigned": { "id": "https://linked.art/example/name/8", "type": "Appellation", "value": "Previous Painting Title" }, "assigned_to": { "id": "https://linked.art/example/object/9", "type": "ManMadeObject", "label": "Current Painting Title", "classified_as": ["aat:300033618","aat:300133025"] }, "carried_out_by": [ { "id": "https://linked.art/example/person/13", "type": "Person", "label": "Painting Curator" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
"Style Of" Attribution
There is a common special case of wanting to assign not an individual (e.g. Rembrandt) or group (Workshop of Rembrandt) to the production of an object, but simply to say that it was produced as if it had been produced by some other actor. This is traditionally recorded as being "in the style of" a known artist. It is not correct to say that Rembrandt carried out the production, but a search for objects attributed (loosely speaking) to Rembrandt should discover this object. The assessment of "style of" attribution is a judgement decision that might be changed later as new evidence of the actual creator comes to light.
The approach taken for this case is to use an AttributeAssignment
classified not as attribution, but instead as "style of" (aat:300404285). This prevent systems from mistakenly infering that the actor carried out the production, but is consistent with the overall pattern. There is intentionally no further model for this use case that the AttributeAssignment
could be translated into.
{ "@context": "https://linked.art/ns/context/1/full.jsonld", "id": "https://linked.art/example/activity/4", "type": "AttributeAssignment", "assigned": { "id": "https://linked.art/example/person/14", "type": "Person", "label": "Well Known Artist" }, "classified_as": ["aat:300404285"], "assigned_to": { "id": "https://linked.art/example/object/10", "type": "ManMadeObject", "label": "Example Painting", "classified_as": ["aat:300033618","aat:300133025"] }, "carried_out_by": [ { "id": "https://linked.art/example/person/15", "type": "Person", "label": "Painting Curator" } ] }
Raw | Playground | Raw Turtle | Styled Turtle
AAT to CIDOC-CRM Mapping
A table summarizing the known AAT activity classifications and the appropriate predicate and class of resource that would be assigned by that activity. As further use cases are discovered, this table will be extended as needed.
Activity | AAT Term | CIDOC-CRM Predicate | Assigned Resource |
---|---|---|---|
Attribution | aat:300056109 | carried_out_by |
Actor |
Appraising | aat:300055545 | none? | MonetaryAmount |
Classifying | aat:300054631 | classified_as |
Type |
Dating | aat:300054714 | timespan |
TimeSpan |
Describing | aat:300080091 | referred_to_by |
LinguisticObject |
Locating | aat:300393211 | took_place_at |
Place (for Activities) |
current_location |
(for Objects) | ||
Measuring | aat:300053578 | dimension |
Dimension |
Naming | aat:300411672 | identified_by |
Appellation |
Style Of | aat:300404285 | none | Actor |
Qustions Arising
- What is the difference between aat:300054622 and aat:300055545 ? Currently using 55545 as the broader scoped of the two terms. And is there a CRM model other than this by which value can be associated with an object, outside of a payment?
- Is it possible to assert that a particular material is part of an object? And is this needed?
- Is it possible to assert a particular owner of an object?