glam/schemas/20251121/linkml/modules/classes/CreationEvent.yaml
kempersc 1516d509cf Add metadata to LinkML class definitions and update prefixes
- Added `id`, `name`, `title`, and `description` fields to multiple LinkML class YAML files.
- Standardized prefixes across all class definitions.
- Introduced a new script `fix_linkml_metadata.py` to automate the addition of metadata to class files.
- Updated existing class files to ensure compliance with the new metadata structure.
2026-01-29 17:40:47 +01:00

153 lines
4.7 KiB
YAML

id: https://nde.nl/ontology/hc/class/CreationEvent
name: CreationEvent
title: Creation Event
description: LinkML class definition for Creation Event
prefixes:
linkml: https://w3id.org/linkml/
schema: http://schema.org/
skos: http://www.w3.org/2004/02/skos/core#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
# CreationEvent - Event representing the creation of an object or work
#
# Created per slot_fixes.yaml migration for: date_created
# Creation date: 2026-01-23
# Rule compliance: 39 (RiC-O naming), 50 (ontology mapping), 53 (generic slot reuse)
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."