- Introduced CreationEvent class to represent the creation of objects, including temporal extent, creator, and place of creation. - Added DatePrecision class to indicate the precision level of date values, supporting various formats from day to century. - Implemented IdentificationEvent class for taxonomic identification, capturing identification date, method, and confidence level. - Created Image class for visual content representation, including URL and metadata for images used in collections. - Archived previous slots related to card images and titles, replacing them with structured slots for better data representation. - Enhanced slots for decommission dates, degree of certainty, and identification events to improve temporal data handling.
95 lines
3 KiB
YAML
95 lines
3 KiB
YAML
# Carrier class
|
|
# Physical carrier for information-bearing objects
|
|
#
|
|
# Created: 2026-01-23 per slot_fixes.yaml F24 (carrier_type migration)
|
|
# Rule compliance: 0b (Type/Types pattern), 38, 39, 42, 53
|
|
|
|
id: https://nde.nl/ontology/hc/class/Carrier
|
|
name: Carrier
|
|
title: Carrier Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
bf: http://id.loc.gov/ontologies/bibframe/
|
|
rda: http://rdaregistry.info/termList/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
dcterms: http://purl.org/dc/terms/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/has_or_had_type
|
|
- ../slots/has_or_had_description
|
|
- ../slots/has_or_had_note
|
|
- ./CarrierType
|
|
|
|
classes:
|
|
Carrier:
|
|
class_uri: bf:Carrier
|
|
description: >-
|
|
A physical medium on which information can be recorded or stored.
|
|
|
|
Models the physical carrier (codex, scroll, disc, etc.) as distinct
|
|
from the content it carries. Supports the FRBR/LRM conceptual model
|
|
distinction between Work/Expression/Manifestation/Item.
|
|
|
|
**Type Classification**:
|
|
Use has_or_had_type with CarrierType subclasses (Rule 0b pattern):
|
|
- CodexCarrier, ScrollCarrier, SheetCarrier (traditional)
|
|
- OpticalDiscCarrier, MagneticTapeCarrier (modern media)
|
|
- DigitalCarrier (born-digital content)
|
|
|
|
MIGRATED from carrier_type enum (2026-01-23) per Rule 53.
|
|
exact_mappings:
|
|
- bf:Carrier
|
|
- rda:Carrier
|
|
close_mappings:
|
|
- crm:E84_Information_Carrier
|
|
slots:
|
|
- has_or_had_type
|
|
- has_or_had_description
|
|
- has_or_had_note
|
|
slot_usage:
|
|
has_or_had_type:
|
|
description: >-
|
|
The type of physical carrier from the CarrierType taxonomy.
|
|
Use CarrierType subclasses per Rule 0b (Type/Types pattern).
|
|
range: CarrierType
|
|
required: true
|
|
examples:
|
|
- value:
|
|
carrier_type_code: CODEX
|
|
carrier_type_label: Codex
|
|
description: Bound volume form
|
|
- value:
|
|
carrier_type_code: VINYL_DISC
|
|
carrier_type_label: Vinyl Disc
|
|
description: Audio recording medium
|
|
has_or_had_description:
|
|
description: >-
|
|
Description of the physical carrier characteristics.
|
|
Includes material, condition, dimensions, etc.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "Paper codex with leather binding, 324 leaves"
|
|
has_or_had_note:
|
|
description: Additional notes about the carrier.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value:
|
|
has_or_had_type:
|
|
carrier_type_code: CODEX
|
|
carrier_type_label: Codex
|
|
has_or_had_description: "Paper codex, 18th-century red morocco binding"
|
|
description: Bound book carrier
|
|
- value:
|
|
has_or_had_type:
|
|
carrier_type_code: VINYL_DISC
|
|
carrier_type_label: Vinyl Disc
|
|
has_or_had_description: "12-inch 33⅓ RPM long-playing record"
|
|
description: Audio carrier
|