- Added `has_or_had_direction` slot to represent directional orientations of entities, migrating from `text_direction`. - Introduced `has_or_had_mode` slot for linking entities to operational modes, migrating from `thinking_mode`. - Created `Content` class to encapsulate intellectual content of heritage materials, migrating from `temporal_coverage`. - Added `TextDirection` class to define text flow orientations, migrating from `text_direction` slot. - Introduced `ThinkingMode` class for LLM thinking mode configurations, migrating from `thinking_mode` slot. - Archived previous slots related to text direction, languages detected, and thinking modes for historical reference. - Updated documentation and annotations for clarity and compliance with RiC-O naming conventions.
116 lines
4.3 KiB
YAML
116 lines
4.3 KiB
YAML
# Content class
|
|
# Represents the intellectual content described by or contained in heritage materials
|
|
#
|
|
# Created: 2026-01-16
|
|
# Migration: temporal_coverage slot → has_or_had_content + Content (Rule 53/56)
|
|
# Rule compliance: 38, 39, 53
|
|
|
|
id: https://nde.nl/ontology/hc/class/Content
|
|
name: Content
|
|
title: Content Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
dcterms: http://purl.org/dc/terms/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
rico: https://www.ica.org/standards/RiC/ontology#
|
|
skos: http://www.w3.org/2004/02/skos/core#
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/has_or_had_label
|
|
- ../slots/has_or_had_description
|
|
- ../slots/temporal_extent
|
|
- ./TimeSpan
|
|
|
|
classes:
|
|
Content:
|
|
class_uri: rico:RecordSetType
|
|
description: |
|
|
The intellectual content described by or contained in heritage materials.
|
|
|
|
**Purpose**:
|
|
Captures what a collection, document, archive, or other heritage material is ABOUT,
|
|
including its temporal coverage, spatial coverage, and subject matter.
|
|
|
|
**Ontological Alignment**:
|
|
- **RiC-O**: `rico:RecordSetType` for archival content characterization
|
|
- **Dublin Core**: Maps to `dcterms:coverage` (temporal/spatial/topical)
|
|
- **CIDOC-CRM**: Relates to `E73_Information_Object` conceptual content
|
|
|
|
**Key Slots**:
|
|
|
|
| Slot | Purpose |
|
|
|------|---------|
|
|
| `temporal_extent` | Time period the content covers (via TimeSpan) |
|
|
| `has_or_had_label` | Content label/title |
|
|
| `has_or_had_description` | Detailed description of content |
|
|
|
|
**Distinction from temporal_extent**:
|
|
- `temporal_extent` on Content = what time period the CONTENT covers
|
|
- `temporal_extent` on Activity = how long the activity lasted
|
|
|
|
**Example**:
|
|
A collection of VOC trade records might have Content with:
|
|
- temporal_extent: 1602-1799 (the period covered by the records)
|
|
- has_or_had_label: "Dutch East India Company Trade Records"
|
|
- has_or_had_description: "Shipping manifests, correspondence, and financial records..."
|
|
|
|
**Migrated From**: temporal_coverage slot (2026-01-16) per Rule 53/56
|
|
slots:
|
|
- has_or_had_label
|
|
- has_or_had_description
|
|
- temporal_extent
|
|
slot_usage:
|
|
has_or_had_label:
|
|
description: Label or title for the content scope
|
|
examples:
|
|
- value: "Dutch Colonial Period Records"
|
|
- value: "Medieval Manuscript Collection"
|
|
has_or_had_description:
|
|
description: Detailed description of the intellectual content
|
|
examples:
|
|
- value: "Administrative records, correspondence, and financial documents from the Dutch colonial administration in the East Indies."
|
|
temporal_extent:
|
|
description: |
|
|
Time period covered by the content (NOT when collected or created).
|
|
Uses TimeSpan for fuzzy temporal bounds.
|
|
MIGRATED from temporal_coverage slot (2026-01-16).
|
|
range: TimeSpan
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
begin_of_the_begin: "1602-01-01"
|
|
end_of_the_end: "1799-12-31"
|
|
description: VOC period (1602-1799)
|
|
- value:
|
|
begin_of_the_begin: "1200-01-01"
|
|
end_of_the_end: "1500-12-31"
|
|
description: Late medieval period
|
|
close_mappings:
|
|
- dcterms:coverage
|
|
- schema:about
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Content characterization applicable to all heritage custodian types
|
|
specificity_score: 0.25
|
|
specificity_rationale: Broadly useful class for describing what heritage materials are about
|
|
examples:
|
|
- value:
|
|
has_or_had_label: "Dutch East India Company Records"
|
|
has_or_had_description: "Trade records, shipping manifests, and correspondence from VOC operations"
|
|
temporal_extent:
|
|
begin_of_the_begin: "1602-03-20"
|
|
end_of_the_end: "1799-12-31"
|
|
description: VOC archival content with temporal coverage
|
|
- value:
|
|
has_or_had_label: "Medieval Illuminated Manuscripts"
|
|
temporal_extent:
|
|
begin_of_the_begin: "0800-01-01"
|
|
end_of_the_end: "1450-12-31"
|
|
description: Medieval manuscript collection content
|