glam/schemas/20251121/linkml/modules/classes/Measurement.yaml
kempersc ca4a54181e Refactor schema files to improve clarity and maintainability
- 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.
2026-01-31 00:46:23 +01:00

87 lines
2.4 KiB
YAML

id: https://nde.nl/ontology/hc/class/Measurement
name: Measurement
title: Measurement
description: 'Represents a measurement observation with value, type, unit, and timestamp.
This class captures environmental and condition measurements for heritage
storage monitoring, including temperature, humidity, light levels, etc.
Created per slot_fixes.yaml revision for category_measurement migration (Rule 53/56).
'
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
qudt: http://qudt.org/schema/qudt/
crm: http://www.cidoc-crm.org/cidoc-crm/
sosa: http://www.w3.org/ns/sosa/
imports:
- linkml:types
- ../slots/has_or_had_measurement_type
- ../slots/has_or_had_measurement_unit
- ../slots/has_or_had_value
- ./MeasureUnit
- ./MeasurementType
default_prefix: hc
classes:
Measurement:
class_uri: sosa:Observation
description: 'A measurement observation capturing a specific value, its type, and unit.
Used for:
- Storage condition monitoring (temperature, humidity)
- Environmental assessments (light levels, UV radiation)
- Conservation observations (pest counts, air quality)
'
slots:
- has_or_had_value
- has_or_had_measurement_type
- has_or_had_measurement_unit
slot_usage:
has_or_had_value:
required: true
has_or_had_measurement_type:
range: MeasurementType
inlined: true
has_or_had_measurement_unit:
range: MeasureUnit
inlined: true
exact_mappings:
- sosa:Observation
- qudt:QuantityValue
close_mappings:
- crm:E16_Measurement
examples:
- value:
has_or_had_value: '19.5'
has_or_had_measurement_type:
has_or_had_name: Temperature
has_or_had_measurement_unit:
has_or_had_name: Degree Celsius
has_or_had_symbol: "\xB0C"
- value:
has_or_had_value: '48'
has_or_had_measurement_type:
has_or_had_name: Relative Humidity
has_or_had_measurement_unit:
has_or_had_name: Percent
has_or_had_symbol: '%'
- value:
has_or_had_value: '250'
has_or_had_measurement_type:
has_or_had_name: Light Level
has_or_had_measurement_unit:
has_or_had_name: Lux
has_or_had_symbol: lx
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"