- Removed compliance_status slot and replaced it with has_or_had_status. - Updated has_or_had_status to use ComplianceStatus for structured representation. - Adjusted examples to reflect new structure for compliance status. - Updated documentation to indicate migration and provide details on the ComplianceStatus class.
132 lines
4.6 KiB
YAML
132 lines
4.6 KiB
YAML
# Significance class
|
|
# Created per slot_fixes.yaml revision for: community_significance
|
|
#
|
|
# MIGRATION NOTE (2026-01-22): Created as part of community_significance migration per Rule 53.
|
|
# Provides structured representation of significance with type classification.
|
|
|
|
id: https://nde.nl/ontology/hc/class/Significance
|
|
name: significance_class
|
|
title: Significance Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
dcterms: http://purl.org/dc/terms/
|
|
schema: http://schema.org/
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/has_or_had_type
|
|
- ../slots/has_or_had_description
|
|
- ../slots/has_or_had_label
|
|
|
|
default_prefix: hc
|
|
|
|
classes:
|
|
Significance:
|
|
class_uri: crm:E55_Type
|
|
description: |
|
|
Structured representation of significance or importance.
|
|
|
|
**MIGRATION NOTE** (2026-01-22):
|
|
Created per slot_fixes.yaml migration from `community_significance` string
|
|
to structured Significance class per Rule 53.
|
|
|
|
**Purpose**:
|
|
Provides structured representation for significance including:
|
|
- Type classification (e.g., cultural, economic, historical)
|
|
- Description of the significance
|
|
- Supporting evidence or justification
|
|
|
|
**Ontological Alignment**:
|
|
- **Primary** (`class_uri`): `crm:E55_Type` - CIDOC-CRM type (significance as typed concept)
|
|
- **Close**: `dcterms:description` - Dublin Core description
|
|
|
|
**Use Cases**:
|
|
- Cultural heritage significance (UNESCO recognition)
|
|
- Community importance (identity, social cohesion)
|
|
- Economic impact (tourism, heritage economy)
|
|
- Historical continuity (ancestral links)
|
|
|
|
**Pattern**:
|
|
```yaml
|
|
has_or_had_significance:
|
|
- has_or_had_type: CommunitySignificance
|
|
has_or_had_description: "Belgian cultural identity, Trappist beer heritage"
|
|
- has_or_had_type: EconomicSignificance
|
|
has_or_had_description: "Tourism revenue, heritage economy"
|
|
```
|
|
|
|
slots:
|
|
- has_or_had_type
|
|
- has_or_had_description
|
|
- has_or_had_label
|
|
|
|
slot_usage:
|
|
has_or_had_type:
|
|
description: |
|
|
The type classification of this significance.
|
|
Range narrowed to SignificanceType class hierarchy.
|
|
range: SignificanceType
|
|
required: false
|
|
examples:
|
|
- value: CommunitySignificance
|
|
description: Community/cultural significance
|
|
- value: EconomicSignificance
|
|
description: Economic importance
|
|
has_or_had_description:
|
|
description: |
|
|
Detailed description of the significance.
|
|
range: string
|
|
required: true
|
|
examples:
|
|
- value: "UNESCO-recognized Trappist tradition, Belgian cultural identity"
|
|
- value: "Economic importance for regional tourism"
|
|
has_or_had_label:
|
|
description: Short label for this significance.
|
|
range: string
|
|
required: false
|
|
examples:
|
|
- value: "UNESCO Intangible Heritage"
|
|
- value: "Regional Economic Driver"
|
|
|
|
exact_mappings:
|
|
- crm:E55_Type
|
|
close_mappings:
|
|
- dcterms:description
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Significance applicable to all heritage custodian types.
|
|
custodian_types_primary: T
|
|
specificity_score: 0.35
|
|
specificity_rationale: >-
|
|
Broadly applicable - significance is fundamental to heritage justification
|
|
across all domains.
|
|
template_specificity:
|
|
collection_discovery: 0.40
|
|
general_heritage: 0.35
|
|
migration_info:
|
|
source_slot: community_significance
|
|
migration_date: "2026-01-22"
|
|
rule: "Rule 53"
|
|
|
|
comments:
|
|
- "Structured significance representation with type"
|
|
- "Replaces simple string-valued community_significance slot"
|
|
- "Type classification via SignificanceType hierarchy"
|
|
- "Created 2026-01-22 from community_significance migration (Rule 53)"
|
|
|
|
examples:
|
|
- value:
|
|
has_or_had_type: CommunitySignificance
|
|
has_or_had_label: "Belgian Trappist Heritage"
|
|
has_or_had_description: "UNESCO-recognized Trappist tradition, Belgian cultural identity, Beer pilgrimage site"
|
|
description: Community/cultural significance for Trappist brewery
|
|
- value:
|
|
has_or_had_type: EconomicSignificance
|
|
has_or_had_label: "Regional Tourism"
|
|
has_or_had_description: "Whisky tourism generating 50,000 visitors/year"
|
|
description: Economic significance for Islay distillery
|