glam/schemas/20251121/linkml/modules/classes/GenerationEvent.yaml
kempersc f7bf1cc5ae Refactor schema slots and classes
- 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.
2026-01-30 00:29:31 +01:00

126 lines
4 KiB
YAML

id: https://nde.nl/ontology/hc/class/GenerationEvent
name: generation_event_class
title: Generation Event Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
prov: http://www.w3.org/ns/prov#
schema: http://schema.org/
imports:
- linkml:types
- ../slots/has_or_had_provenance
- ./Provenance
- ../slots/temporal_extent
- ./TimeSpan
- ../slots/has_or_had_description
- ../slots/has_or_had_score
- ./ConfidenceScore
default_prefix: hc
classes:
GenerationEvent:
description: >-
An event representing the generation or creation of an entity.
**USAGE**:
Used for tracking when and how something was generated, including:
- Video chapter generation (manual, AI, imported)
- Content extraction events
- Automated processing activities
- Confidence scoring for generated content
**STRUCTURE**:
- temporal_extent: When the generation occurred (TimeSpan)
- has_or_had_provenance: Who/what performed the generation (Provenance)
- has_or_had_description: Details about the generation process
- has_or_had_score: Confidence score for the generated content (ConfidenceScore)
**ONTOLOGY ALIGNMENT**:
- Maps to prov:Generation (PROV-O generation event)
- Also maps to schema:CreateAction (Schema.org action)
class_uri: prov:Generation
exact_mappings:
- prov:Generation
close_mappings:
- schema:CreateAction
slots:
- temporal_extent
- has_or_had_provenance
- has_or_had_description
- has_or_had_score
slot_usage:
temporal_extent:
description: When the generation event occurred
range: TimeSpan
required: false
inlined: true
examples:
- value:
begin_of_the_begin: "2024-01-15T10:30:00Z"
end_of_the_end: "2024-01-15T10:30:00Z"
description: Point-in-time generation event
has_or_had_provenance:
description: Provenance information about who/what generated the entity
range: Provenance
required: false
inlined: true
examples:
- value:
has_or_had_agent:
has_or_had_type: SOFTWARE
has_or_had_name: "YouTube Auto-Chapters"
description: AI-generated chapters
has_or_had_description:
description: Additional details about the generation process
range: string
required: false
examples:
- value: "Generated using Whisper transcript segmentation"
description: Description of generation method
has_or_had_score:
description: >-
Confidence score for the generation output. Uses ConfidenceScore class
to capture structured confidence with method and explanation.
range: ConfidenceScore
required: false
inlined: true
examples:
- value:
has_or_had_score: 0.95
has_or_had_method: "xpath_extraction"
has_or_had_description: "High confidence - exact match at expected location"
description: Confidence score for generated content
annotations:
custodian_types: '["*"]'
custodian_types_rationale: >-
Generation events are universal for tracking content creation.
custodian_types_primary: "*"
specificity_score: 0.30
specificity_rationale: >-
Moderately low specificity - used across many content types.
examples:
- value:
temporal_extent:
begin_of_the_begin: "2024-01-15T10:30:00Z"
has_or_had_description: "AI-generated video chapters from transcript"
has_or_had_score:
has_or_had_score: 0.92
has_or_had_method: "transcript_segmentation"
description: Video chapter generation event with confidence
comments:
- Created from slot_fixes.yaml migration (2026-01-19)
- Updated 2026-01-19 to include has_or_had_score for confidence tracking