- Deleted obsolete slot definitions: statement_summary, statement_text, statement_type, status_name, supersede_articles, supersede_condition, supersede_name, temporal_dynamics, total_amount, typical_contents, use_cases, was_acquired_through, was_fetched_at, was_retrieved_at. - Updated existing slot definitions for states_or_stated to enhance clarity and structure. - Introduced new classes: Article, ConditionofAccess, FinancialStatementType, MaximumQuantity, Series, Summary, Type, and their respective slots to improve schema organization and usability. - Added new slots: changes_or_changed_through, has_or_had_condition_of_access, has_or_had_heritage_type, is_or_was_part_of_series, is_or_was_retrieved_at, maximum_of_maximum to capture additional metadata and relationships.
110 lines
3.8 KiB
YAML
110 lines
3.8 KiB
YAML
id: https://nde.nl/ontology/hc/class/ConditionPolicy
|
|
name: condition_policy_class
|
|
title: Condition Policy Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
odrl: http://www.w3.org/ns/odrl/2/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
dcterms: http://purl.org/dc/terms/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ./Policy
|
|
- ../slots/has_or_had_requirement_status
|
|
- ./RequirementStatus
|
|
- ../slots/standards_compliance
|
|
- ../slots/is_or_was_approved_by
|
|
- ./Approver
|
|
|
|
classes:
|
|
ConditionPolicy:
|
|
class_uri: hc:ConditionPolicy
|
|
is_a: Policy
|
|
description: |
|
|
Policy specifying required conditions for heritage materials.
|
|
|
|
**DEFINITION**:
|
|
|
|
A ConditionPolicy defines normative environmental, handling, or
|
|
preservation conditions that SHOULD be maintained. This contrasts
|
|
with Condition classes which describe ACTUAL observed states.
|
|
|
|
**SUBCLASSES**:
|
|
|
|
- **StorageConditionPolicy**: Conditions for storage facilities
|
|
- **DisplayConditionPolicy**: Conditions for exhibition display
|
|
- **TransportConditionPolicy**: Conditions during transit
|
|
- **LoanConditionPolicy**: Conditions required for loans
|
|
|
|
**POLICY vs OBSERVATION PATTERN**:
|
|
|
|
```
|
|
Heritage Object
|
|
│
|
|
├── has_or_had_policy → ConditionPolicy (what SHOULD be)
|
|
│ ├── policy_name: "Conservation-grade storage"
|
|
│ ├── temperature_setpoint: 18°C ±2°C
|
|
│ └── humidity_setpoint: 50% ±5%
|
|
│
|
|
└── has_or_had_condition → Condition (what IS)
|
|
├── temperature: 22°C ✗ (exceeds policy)
|
|
└── humidity: 48% ✓ (within policy)
|
|
```
|
|
|
|
**USE CASES**:
|
|
|
|
1. **Storage Policy**: Climate requirements for archive storage
|
|
2. **Loan Policy**: Conditions required before lending objects
|
|
3. **Display Policy**: Light and climate limits for exhibition
|
|
4. **Handling Policy**: Environmental controls during movement
|
|
|
|
Created as part of condition_policy migration per slot_fixes.yaml (Rule 53).
|
|
|
|
exact_mappings:
|
|
- hc:ConditionPolicy
|
|
close_mappings:
|
|
- odrl:Policy
|
|
- crm:E29_Design_or_Procedure
|
|
|
|
slots:
|
|
- has_or_had_requirement_status
|
|
- standards_compliance
|
|
- is_or_was_approved_by
|
|
|
|
slot_usage:
|
|
has_or_had_requirement_status:
|
|
description: Requirements that must be met under this policy.
|
|
standards_compliance:
|
|
description: Standards this policy complies with (ISO, EN, etc.).
|
|
is_or_was_approved_by:
|
|
description: Authority that approved this policy.
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Condition policies apply to all heritage types.
|
|
specificity_score: 0.45
|
|
specificity_rationale: Specialized policy type for condition management.
|
|
|
|
comments:
|
|
- "Subclass of Policy for condition-related policies"
|
|
- "StorageConditionPolicy is a further specialization"
|
|
- "Created 2026-01-22 per slot_fixes.yaml condition_policy migration"
|
|
|
|
examples:
|
|
- value:
|
|
policy_name: "Archive Storage Policy"
|
|
policy_description: "Environmental requirements for archival storage per ISO/TR 19815:2018"
|
|
standards_compliance:
|
|
- "ISO/TR 19815:2018"
|
|
- "EN 16893:2018"
|
|
policy_effective_from: "2020-01-01"
|
|
description: Archive climate control policy
|
|
- value:
|
|
policy_name: "Exhibition Light Policy"
|
|
policy_description: "Maximum light exposure for sensitive materials"
|
|
policy_effective_from: "2022-06-01"
|
|
description: Display condition policy for light-sensitive materials
|