- Migrated catering_type to CateringType with subclasses for better classification. - Updated certainty_level to has_or_had_level for improved metadata consistency. - Addressed cessation_observed_in by confirming existing temporal data structure. - Created NetAsset class and updated financial statements for richer financial modeling. - Completed migrations for default_access_policy, default_audio_language, and default_language to structured classes. - Migrated default_position to structured Alignment class for better representation. - Updated defined_by_standard to broaden range for identifier standards. - Migrated definition to structured Resolution class for video resolution modeling. - Completed migrations for degree_name, deliverable, and departement_code to structured classes. - Migrated deployment_date to structured DeploymentEvent with temporal extent. - Migrated derived_from_entity and derived_from_observation to new reference structures. - Completed description and description_text migrations to enhance content modeling. - Migrated detection_count, detection_level, and detection_threshold to structured slots with classes. - Migrated device-related slots to structured classes for better identification and classification. - Added new slots and classes for historic building and web address modeling.
101 lines
3.2 KiB
YAML
101 lines
3.2 KiB
YAML
# Model class
|
|
# Represents a product model or design variant
|
|
#
|
|
# Generation date: 2026-01-25
|
|
# Rule compliance: 0 (LinkML single source of truth), 53 (migration from device_model)
|
|
# Migration source: device_model slot per slot_fixes.yaml
|
|
|
|
id: https://nde.nl/ontology/hc/class/Model
|
|
name: model_class
|
|
title: Model Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_or_had_label
|
|
- ../slots/has_or_had_identifier
|
|
|
|
classes:
|
|
Model:
|
|
class_uri: schema:ProductModel
|
|
description: |
|
|
Represents a product model or design variant.
|
|
|
|
**MIGRATION SOURCE**: Created from device_model slot migration (Rule 53, 2026-01-25).
|
|
|
|
**Pattern**: Simple string model name replaced with structured class:
|
|
- has_or_had_label: Model name/designation
|
|
- has_or_had_identifier: Model number or SKU
|
|
|
|
**Ontological Alignment**:
|
|
- **Primary**: `schema:ProductModel` - Schema.org product model
|
|
|
|
**Use Cases**:
|
|
- IoT device models (Estimote Proximity Beacon, Sensirion SHT45)
|
|
- Equipment model variants
|
|
- Hardware versions
|
|
|
|
**Relationship to InternetOfThings**:
|
|
```
|
|
InternetOfThings
|
|
└── has_or_had_model → Model
|
|
├── has_or_had_label → "Estimote Proximity Beacon"
|
|
└── has_or_had_identifier → "EPB-v3.0"
|
|
```
|
|
|
|
exact_mappings:
|
|
- schema:ProductModel
|
|
|
|
slots:
|
|
- has_or_had_identifier
|
|
- has_or_had_label
|
|
|
|
slot_usage:
|
|
has_or_had_identifier:
|
|
description: Model number, SKU, or unique identifier for this model.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: EPB-v3.0
|
|
description: Estimote Proximity Beacon version 3.0
|
|
- value: SHT45-AD1B-R2
|
|
description: Sensirion sensor model number
|
|
has_or_had_label:
|
|
description: Name or designation of the model.
|
|
range: string
|
|
required: true
|
|
examples:
|
|
- value: Estimote Proximity Beacon
|
|
description: Beacon model name
|
|
- value: Sensirion SHT45
|
|
description: Sensor model name
|
|
- value: Samsung Kiosk 24 Touch
|
|
description: Kiosk model name
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Product models applicable to all custodian types using equipment.
|
|
custodian_types_primary: null
|
|
specificity_score: 0.6
|
|
specificity_rationale: Specific to equipment and technology tracking.
|
|
|
|
comments:
|
|
- "CREATED from device_model migration per slot_fixes.yaml (Rule 53)"
|
|
- "Schema.org ProductModel for model representation"
|
|
- "Enables structured model data with name and identifier"
|
|
|
|
examples:
|
|
- value:
|
|
has_or_had_identifier: EPB-v3.0
|
|
has_or_had_label: Estimote Proximity Beacon
|
|
description: Estimote beacon model
|
|
- value:
|
|
has_or_had_identifier: SHT45-AD1B-R2
|
|
has_or_had_label: Sensirion SHT45
|
|
description: Sensirion sensor model
|