- Deleted obsolete slot definitions: statement_summary, statement_text, statement_type, status_name, supersede_articles, supersede_condition, supersede_name, temporal_dynamics, total_amount, typical_contents, use_cases, was_acquired_through, was_fetched_at, was_retrieved_at. - Updated existing slot definitions for states_or_stated to enhance clarity and structure. - Introduced new classes: Article, ConditionofAccess, FinancialStatementType, MaximumQuantity, Series, Summary, Type, and their respective slots to improve schema organization and usability. - Added new slots: changes_or_changed_through, has_or_had_condition_of_access, has_or_had_heritage_type, is_or_was_part_of_series, is_or_was_retrieved_at, maximum_of_maximum to capture additional metadata and relationships.
137 lines
4.1 KiB
YAML
137 lines
4.1 KiB
YAML
id: https://nde.nl/ontology/hc/class/CreationEvent
|
|
name: creation_event
|
|
title: Creation Event
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
prov: http://www.w3.org/ns/prov#
|
|
schema: http://schema.org/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ./TimeSpan
|
|
- ./Agent
|
|
- ../slots/temporal_extent
|
|
- ../slots/has_or_had_description
|
|
- ../slots/has_or_had_place
|
|
|
|
classes:
|
|
CreationEvent:
|
|
class_uri: crm:E65_Creation
|
|
description: |
|
|
Event representing the creation of an object, work, or artifact.
|
|
|
|
**DEFINITION**:
|
|
CreationEvent models the act of bringing an object into existence,
|
|
capturing when, where, and by whom it was created.
|
|
|
|
**ONTOLOGY ALIGNMENT**:
|
|
- **Primary** (`class_uri`): `crm:E65_Creation` - CIDOC-CRM creation event
|
|
- **Close**: `prov:Activity` - PROV-O activity
|
|
- **Close**: `schema:CreateAction` - Schema.org create action
|
|
|
|
**USAGE**:
|
|
Replaces simple `date_created` strings with structured event data:
|
|
- Temporal extent (including approximate dates like "c. 1665")
|
|
- Creator/artist information
|
|
- Place of creation
|
|
- Creation circumstances
|
|
|
|
**Example**:
|
|
```yaml
|
|
is_or_was_created_through:
|
|
temporal_extent:
|
|
begin_of_the_begin: "1665-01-01"
|
|
end_of_the_end: "1665-12-31"
|
|
display_date: "c. 1665"
|
|
has_or_had_creator:
|
|
- agent_name: "Johannes Vermeer"
|
|
agent_role: "artist"
|
|
has_or_had_place:
|
|
place_name: "Delft"
|
|
country: "NL"
|
|
```
|
|
|
|
close_mappings:
|
|
- prov:Activity
|
|
- schema:CreateAction
|
|
|
|
slots:
|
|
- temporal_extent
|
|
- has_or_had_description
|
|
- has_or_had_place
|
|
- has_or_had_creator
|
|
- creation_method
|
|
- display_date
|
|
|
|
slot_usage:
|
|
temporal_extent:
|
|
range: TimeSpan
|
|
inlined: true
|
|
description: |
|
|
When the creation occurred, using CIDOC-CRM TimeSpan.
|
|
Supports fuzzy/approximate dates via display_date.
|
|
examples:
|
|
- value:
|
|
begin_of_the_begin: "1665-01-01"
|
|
end_of_the_end: "1665-12-31"
|
|
display_date: "c. 1665"
|
|
description: Approximate creation date
|
|
has_or_had_creator:
|
|
range: Agent
|
|
multivalued: true
|
|
inlined_as_list: true
|
|
description: Person(s) or organization(s) who created the object.
|
|
examples:
|
|
- value:
|
|
- agent_name: "Johannes Vermeer"
|
|
description: Single artist
|
|
has_or_had_place:
|
|
range: Place
|
|
inlined: true
|
|
description: Location where creation occurred.
|
|
examples:
|
|
- value:
|
|
place_name: "Delft"
|
|
description: City of creation
|
|
display_date:
|
|
range: string
|
|
description: |
|
|
Human-readable date string for display purposes.
|
|
Preserves original date expressions like "c. 1665", "17th century",
|
|
"196 BCE", "1642".
|
|
examples:
|
|
- value: "c. 1665"
|
|
description: Circa date
|
|
- value: "17th century"
|
|
description: Century-level precision
|
|
- value: "196 BCE"
|
|
description: Historical date
|
|
creation_method:
|
|
range: string
|
|
description: Technique or method used in creation.
|
|
examples:
|
|
- value: "oil on canvas"
|
|
description: Painting technique
|
|
|
|
attributes:
|
|
has_or_had_creator:
|
|
range: Agent
|
|
multivalued: true
|
|
inlined_as_list: true
|
|
display_date:
|
|
range: string
|
|
description: Human-readable date for display.
|
|
creation_method:
|
|
range: string
|
|
description: Technique or method of creation.
|
|
|
|
annotations:
|
|
custodian_types: '["G", "M", "L", "A"]'
|
|
custodian_types_rationale: "Creation events primarily relevant to galleries, museums, libraries, archives with collections."
|
|
specificity_score: 0.70
|
|
specificity_rationale: "Fairly specific to collection object contexts."
|