- Updated WorldCatIdentifier.yaml to remove unnecessary description and ensure consistent formatting. - Enhanced WorldHeritageSite.yaml by breaking long description into multiple lines for better readability and removed unused attributes. - Simplified WritingSystem.yaml by removing redundant attributes and ensuring consistent formatting. - Cleaned up XPathScore.yaml by removing unnecessary attributes and ensuring consistent formatting. - Improved YoutubeChannel.yaml by breaking long description into multiple lines for better readability. - Enhanced YoutubeEnrichment.yaml by breaking long description into multiple lines for better readability. - Updated YoutubeVideo.yaml to break long description into multiple lines and removed legacy field name. - Refined has_or_had_affiliation.yaml by removing unnecessary comments and ensuring clarity. - Cleaned up is_or_was_retrieved_at.yaml by removing unnecessary comments and ensuring clarity. - Added rules for generic slots and avoiding rough edits in schema files to maintain structural integrity. - Introduced changes_or_changed_through.yaml to define a new slot for linking entities to change events.
83 lines
2.6 KiB
YAML
83 lines
2.6 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
|
|
- ../slots/has_or_had_description
|
|
- ../slots/has_or_had_place
|
|
- ../slots/temporal_extent
|
|
- ./Agent
|
|
- ./TimeSpan
|
|
- ./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
|
|
slot_usage:
|
|
temporal_extent:
|
|
range: TimeSpan
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
begin_of_the_begin: "1665-01-01"
|
|
end_of_the_end: "1665-12-31"
|
|
- value:
|
|
- agent_name: "Johannes Vermeer"
|
|
has_or_had_place:
|
|
range: Place
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
place_name: "Delft"
|
|
- value: "c. 1665"
|
|
- value: "17th century"
|
|
- value: "196 BCE"
|
|
- value: "oil on canvas"
|
|
attributes:
|
|
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."
|