Introduction
Most of the events and activities and other temporal aspects that we care about are directly related to the objects, people, and other entities. These would include the activity that brings the entity into existence (productions, creations, births and formations), takes them out of existence (destructions, erasures, dissolutions) or otherwise significantly affects their appearance in the cultural record (when there were encountered, their publication, a person's professional activities). There are two broad classes of activity which have their own specific models -- the provenance or ownership history of the object, and exhibitions.
There are also periods of time, events and activities carried out by people which provide additional context to the objects, but are not directly tied to them. These sorts of temporal entity would include periods of time (the cretaceous period, the bronze age, the 17th century), events that occur but are not intentionally carried out by people (the eruption of Vesuvius, the fire of London, the COVID 19 pandemic), and activities carried out by people (the first Linked Art face to face meeting, the landing on the moon, Scott's journey to Antarctica). This part of the model concerns these latter types, as they are separate from the objects and works in the same way that people, places and concepts are.
Types
There are three types of temporal entity, as described above:
- Period: A period of time, likely somewhat arbitrarily defined, such as an "age" or century.
- Event: An event which occurs and then is finished, and typically changes the state of the world in some way.
- Activity: An event that was intentionally or willfully carried out by humans, singularly or in a group.
These types or classes are recorded in type
in the model.
Example:
The 19th Century is a period that spans from 1800 through the end of 1899.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/event/19c/1",
"type": "Period",
"_label": "19th Century",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "19th Century"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "1800-01-01T00:00:00Z",
"end_of_the_end": "1899-12-31T23:59:59Z"
}
}
Common Features
All of the common features of entities are available for events, including those defined specifically for events or activities such as being caused by another event described below in more detail, being carried out by a person or group, and so forth.
Causes
Events and Activities can be caused by a preceding event or activity, for example the destruction of Pompeii was caused by the eruption of Vesuvius. The eruption of Vesuvius would then be an Event, referenced from the Destruction event for the (physical) city of Pompeii using the caused_by
property. The eruption is also depicted in many paintings, and is the subject of many books. As such, it must have its own record, so that the objects, works and events can refer to the same entity.
Example:
Vesuvius erupts on August 24th, 79 CE.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/event/vesuvius/1",
"type": "Event",
"_label": "Eruption of Vesuvius",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "Eruption of Vesuvius"
}
],
"timespan": {
"type": "TimeSpan",
"begin_of_the_begin": "0079-08-24T12:00:00Z",
"end_of_the_end": "0079-08-26T23:59:59Z"
},
"took_place_at": [
{
"id": "https://linked.art/example/place/vesuvius",
"type": "Place",
"_label": "Mount Vesuvius"
}
]
}
And was the cause of the destruction of the city of Pompeii.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/pompeii-buildings/1",
"type": "HumanMadeObject",
"_label": "Buildings making up the city of Pompeii",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "City of Pompeii"
}
],
"destroyed_by": {
"type": "Destruction",
"caused_by": [
{
"id": "https://linked.art/example/event/vesuvius",
"type": "Event"
}
]
}
}
During vs Part Of
There are two relationships that describe how events are related to each other in terms of partitioning or inclusion, part_of
and during
. Each has a particular usage that should be adhered to carefully, otherwise searches and user interfaces will become very confusing and convoluted.
Firstly, if one event is a strict part of another, and if you listed all of the parts, then the entire whole would be completed described, then the correct property to use is part_of
. For example, the Bronze Age consists of the Early Bronze Age, the Middle Bronze Age and the Late Bronze Age. Each of those might be further subdivided into a hierarchy of periods.
Conversely, if we know that an artifact was created during the bronze age, we would not list that along side its parts. The relationship is one of inclusion, rather than strict partitioning, and often either a stand-in for an unknown and more explicit timespan, or a method to categorize or group the activities or events that occur during the broader context. For example the Production activity for the artifact occured during
the Bronze Age period, but is not one of the constituent parts like those listed above.
Example:
The Early Roman Empire period, from 31 BCE through 193 CE, is part of the Roman Empire period.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/event/early_roman/1",
"type": "Period",
"_label": "Early Roman Empire (31 BCE - 193 CE)",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "Early Roman Empire"
}
],
"part_of": [
{
"id": "https://linked.art/example/event/roman",
"type": "Period",
"_label": "Roman Empire"
}
]
}
And Vesuvius erupted during this period.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/event/vesuvius/2",
"type": "Event",
"_label": "Eruption of Vesuvius",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "Eruption of Vesuvius"
}
],
"during": [
{
"id": "https://linked.art/example/event/early_roman",
"type": "Period",
"_label": "Early Roman Empire"
}
]
}
Relative Times
Sometimes we have an order for activities or events relative to each other, but do not have a specific time at which they took place. For example, we might know from documentary evidence that an object was created before some event but have only the vaguest time period in which those two activities occured. We can describe the order between events using the properties before
(the event with the property occured before the event in the value of the property) and after
(the opposite). This is especially useful for provenance activities in order to form an ordered sequence of events, without knowing the dates of the sales.
Example:
A statue in Pompeii must have been created before the eruption of Vesuvius.
{
"@context": "https://linked.art/ns/v1/linked-art.json",
"id": "https://linked.art/example/object/pompeii_statue/1",
"type": "HumanMadeObject",
"_label": "Statue in Pompeii",
"identified_by": [
{
"type": "Name",
"classified_as": [
{
"id": "http://vocab.getty.edu/aat/300404670",
"type": "Type",
"_label": "Primary Name"
}
],
"content": "Pompeii Statue"
}
],
"produced_by": {
"type": "Production",
"before": [
{
"id": "https://linked.art/example/event/vesuvius",
"type": "Event",
"_label": "Eruption of Vesuvius"
}
]
}
}