- Introduced PriceRange class to categorize price levels for hospitality services, including structured metadata for various price categories. - Added Publication class to represent publication events, capturing details like publisher, publication place, and edition. - Created TaxDeductibilityType as an abstract class for tax deductibility status, promoting previous enum values to a class hierarchy for richer metadata. - Implemented TaxDeductibilityTypes with concrete subclasses detailing various tax deductibility statuses. - Archived previous DeductibilityStatusEnum and related slots, transitioning to a more structured approach for tax deductibility classification. - Updated multiple slot definitions to align with new class structures and naming conventions, including has_or_had_measurement and has_or_had_price. - Enhanced documentation and examples across new and existing slots for clarity and compliance with naming conventions.
82 lines
2.8 KiB
YAML
82 lines
2.8 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_value
|
|
- ../slots/has_or_had_measurement_type
|
|
- ../slots/has_or_had_measurement_unit
|
|
- ./MeasurementType
|
|
- ./MeasureUnit
|
|
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:
|
|
description: |
|
|
The measured value as a string (e.g., "19.5", "48", "250").
|
|
String type allows for special notation (±, <, >, ranges).
|
|
required: true
|
|
has_or_had_measurement_type:
|
|
description: The type/category of measurement (temperature, humidity, etc.).
|
|
range: MeasurementType
|
|
inlined: true
|
|
has_or_had_measurement_unit:
|
|
description: The unit of measurement (°C, % RH, lux, etc.).
|
|
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: "°C"
|
|
description: Temperature measurement of 19.5°C
|
|
- 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: "%"
|
|
description: Humidity measurement of 48% RH
|
|
- 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"
|
|
description: Light level measurement of 250 lux
|